This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from zyebytevt/zyedev
Rewrite backends to be dynamic, various other improvements
- Loading branch information
Showing
75 changed files
with
2,733 additions
and
2,336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
## Declaration order | ||
|
||
Member declaration order: | ||
1. `private` | ||
2. `protected` | ||
3. `package` | ||
4. `public` | ||
5. `export` | ||
|
||
## Attributes | ||
|
||
- Visibility modifiers (and static) in C++ syntax | ||
- Not required for public-only structs (PODs) | ||
- Function attributes after brackets | ||
- Use `in` instead of `const ref` | ||
|
||
## Casing | ||
|
||
- Non-public member variables: `m + PascalCase` | ||
- Non-public static member variables: `s + PascalCase` | ||
- Non-public module variables: `p + PascalCase` | ||
|
||
- Classes, Structs, Interfaces, Unions: `PascalCase` | ||
- Aliases: Dependent on type | ||
- Constants: camelCase | ||
|
||
Everything else: camelCase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.