Josh Junon
Josh Junon
This PR fixes a few things: - Adds a test that checks if a Pantone ASE decodes successfully - Fixes groups. Groups weren't being checked properly after retrieving names, causing...
> TODO Should talk about switching out how string interpolation is implemented on a per-module basis, or per block via compiler details, etc. Idea is that I don't want to...
`type` and `alias` both create a new type identifier in the unit scope, however `type` creates a new type whereas `alias` creates a new name for an existing type. ---...
I want to enforce the use of `this.` in methods, but I recognize that it's very much a burden to type it out all the time. However, Ruby has as...
_TODO_ A note about enums: Should have nested enum support: ```arua enum AstType STATEMENT TYPE SCALAR ARRAY POINTER type AstType = TYPE::SCALAR ``` Or something.
Numeric literals in Arua take a unique approach in terms of showing _intent_. ### "Intent" Arua aims to show intent. "Intent" can mean a few things, but with numerics (as...
> This is a continuation of a comment stream on #3. Considering the allowance of generic types on functions and/or types. Both C++ and Java support per-function generics, so this...