Skip to content

Commit

Permalink
blarggh
Browse files Browse the repository at this point in the history
  • Loading branch information
cetio committed May 9, 2024
1 parent 9808366 commit c73b313
Show file tree
Hide file tree
Showing 21 changed files with 27 additions and 27 deletions.
14 changes: 7 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
docs.json
__dummy.html
docs/
/fern
fern.so
fern.dylib
fern.dll
fern.a
fern.lib
fern-test-*
/fnc
fnc.so
fnc.dylib
fnc.dll
fnc.a
fnc.lib
fnc-test-*
*.exe
*.pdb
*.o
Expand Down
2 changes: 1 addition & 1 deletion dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
},
"description": "The Fern programming language",
"license": "AGPL-3.0-only",
"name": "fern"
"name": "fnc"
}
Binary file added fern-test-library
Binary file not shown.
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Fern
<p align = "center">
<a href="https://github.com/cetio/fern/actions/workflows/d.yml"> <img src="https://github.com/cetio/fern/actions/workflows/d.yml/badge.svg"> </a>
<a href="https://raw.githubusercontent.com/cetio/fern/main/LICENSE.txt"> <img src="https://img.shields.io/github/license/cetio/fern.svg" alt="GitHub repo license"/> </a>
<a href="https://github.com/cetio/fern"><img src="https://img.shields.io/github/repo-size/cetio/fern.svg" alt="GitHub repo size"/></a>
<a href="https://github.com/cetio/fern"><img src="https://img.shields.io/github/languages/code-size/cetio/fern.svg" alt="GitHub code size"/></a>
<a href="https://github.com/cetio/fern"><img src="https://img.shields.io/github/commit-activity/t/cetio/fern.svg" alt="GitHub commits"/></a>
<a href="https://github.com/cetio/fnc/actions/workflows/d.yml"> <img src="https://github.com/cetio/fnc/actions/workflows/d.yml/badge.svg"> </a>
<a href="https://raw.githubusercontent.com/cetio/fnc/main/LICENSE.txt"> <img src="https://img.shields.io/github/license/cetio/fnc.svg" alt="GitHub repo license"/> </a>
<a href="https://github.com/cetio/fnc"><img src="https://img.shields.io/github/repo-size/cetio/fnc.svg" alt="GitHub repo size"/></a>
<a href="https://github.com/cetio/fnc"><img src="https://img.shields.io/github/languages/code-size/cetio/fnc.svg" alt="GitHub code size"/></a>
<a href="https://github.com/cetio/fnc"><img src="https://img.shields.io/github/commit-activity/t/cetio/fnc.svg" alt="GitHub commits"/></a>
<br>
<a href="https://github.com/cetio/gallinule"><img src="https://img.shields.io/badge/Gallinule-2ea44f?style=for-the-badge&logo=github" alt="Gallinule"/></a>
</p>
Expand Down
3 changes: 0 additions & 3 deletions source/fern/emission/package.d

This file was deleted.

5 changes: 0 additions & 5 deletions source/fern/package.d

This file was deleted.

3 changes: 3 additions & 0 deletions source/fnc/emission/package.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module fnc.emission;

public import fnc.emission.x86;
4 changes: 2 additions & 2 deletions source/fern/emission/x86.d → source/fnc/emission/x86.d
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/// Code generation facilities for compiler backend.
module fern.emission.x86;
module fnc.emission.x86;

import gallinule.x86;
import fern.symbols;
import fnc.symbols;
import std.traits;

public enum OpCode : ushort
Expand Down
5 changes: 5 additions & 0 deletions source/fnc/package.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module fnc;

public import fnc.emission;
public import fnc.propagation;
public import fnc.symbols;
4 changes: 2 additions & 2 deletions source/fern/propagation.d → source/fnc/propagation.d
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// Propagation for CTFE to allow for working with symbols arbitrarily.
module fern.propagation;
module fnc.propagation;

import fern.symbols;
import fnc.symbols;

public struct Engine
{
Expand Down
4 changes: 2 additions & 2 deletions source/fern/symbols.d → source/fnc/symbols.d
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// Comptime symbol information for types, functions, fields, etc.
module fern.symbols;
module fnc.symbols;

import fern.emission;
import fnc.emission;
import tern.state;

public enum SymAttr : ulong
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c73b313

Please sign in to comment.