aboutsummaryrefslogtreecommitdiff
path: root/src/check_stmt.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove `#const`; Minor fixesgingerBill2017-11-121-13/+13
|
* In error messages, remove ` with '; Fix error messages for `switch`gingerBill2017-11-121-94/+94
|
* Fix link_name overridinggingerBill2017-11-091-1/+1
|
* Change push allocator system; update core librariesgingerBill2017-11-091-12/+8
|
* Allow `nil` in a ternary statementgingerBill2017-11-091-5/+5
|
* Amend allocation procedures with caller location; Compound literals missing ↵gingerBill2017-11-091-37/+41
| | | | type can determine type in certain cases.
* Fix issue #134gingerBill2017-11-071-1/+3
|
* More code clean upgingerBill2017-11-041-14/+23
|
* Cleanup attribute handlinggingerBill2017-11-041-54/+6
|
* Foreign context cleanupgingerBill2017-11-031-4/+4
|
* `link_prefix`; `thread_local`; fix `link_name` for file-scope variablesgingerBill2017-11-031-3/+52
|
* Add string_set.cpp; Code clean upgingerBill2017-10-301-1/+1
|
* `@(default_calling_convention = ...)` for `foreign` blocksgingerBill2017-10-291-0/+3
|
* Attributes; @(link_name="foo")gingerBill2017-10-291-1/+1
|
* Fix `using` on import namesGinger Bill2017-10-081-0/+4
|
* `match` to `switch`; Optional semicolons after "import" statementsGinger Bill2017-10-011-30/+48
|
* Fix old_demos; Fix `when` bug; Fix enum `.names`Ginger Bill2017-09-291-1/+0
|
* Prevent statements after branch statements.Ginger Bill2017-09-241-0/+4
|
* Use comma for struct field separators (disallow nesting)Ginger Bill2017-09-211-19/+2
|
* Import cycle checkingGinger Bill2017-08-271-1/+1
|
* Restrict global variables to not allow tuplesGinger Bill2017-08-201-1/+1
|
* Global variable dependency initialization orderingGinger Bill2017-08-201-2/+2
| | | | Fuck graph theory
* Fix `push_allocator`Ginger Bill2017-08-131-1/+3
|
* Extra type safety; Fix typosGinger Bill2017-07-311-3/+3
|
* Fix polymorphic element types usage; Empty `union` as opaque typeGinger Bill2017-07-201-0/+5
|
* Change internals from `Record` to `Struct`Ginger Bill2017-07-201-6/+6
|
* Update internals of a Union and TupleGinger Bill2017-07-201-2/+2
|
* Remove `atomic`, `++`, and `--`Ginger Bill2017-07-181-0/+2
|
* Polymorphic type specialization for proceduresGinger Bill2017-07-171-6/+13
|
* Rudimentary support for parametric polymorphic typesGinger Bill2017-07-131-125/+126
|
* Change precedence order for types e.g. ^T(x) == ^(T(x))Ginger Bill2017-07-131-6/+5
|
* Compiler Internal Changes: TypeRecord_Union -> Type_UnionGinger Bill2017-07-101-2/+2
|
* Compiler internal change: TypeRecord_Enum -> Type_EnumGinger Bill2017-07-101-35/+5
|
* `union` type allow for any types and removes common fieldsGinger Bill2017-07-101-2/+2
|
* Nested record declarationsGinger Bill2017-07-101-2/+34
|
* `..` half closed range; `...` open range; `...` variadic syntaxGinger Bill2017-07-071-2/+3
|
* Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functionsGinger Bill2017-07-061-81/+81
|
* Implicit parametric polymorphic proceduresGinger Bill2017-06-291-0/+3
|
* Remove `Type`Ginger Bill2017-06-291-5/+2
| | | | What was I thinking?!
* Add `Type` -- Runtime type for comparing types (similar to TypeInfo but simpler)Ginger Bill2017-06-291-1/+5
|
* Make `AstNodeIdent` a struct wrapping its `Token`Ginger Bill2017-06-291-9/+9
|
* Remove `var` and `const` keywords; Fix default parameter syntaxGinger Bill2017-06-281-6/+2
|
* :: style procedure declarations; remove old parsing codeGinger Bill2017-06-281-156/+0
|
* Basic allowance for := and ::Ginger Bill2017-06-281-0/+147
|
* Remove `let`Ginger Bill2017-06-261-4/+2
|
* Wrap hashing functionsGinger Bill2017-06-221-1/+1
|
* Clean up code for return statements, slightlyGinger Bill2017-06-221-16/+18
|
* Default result values for procedure types; Named result values in `return` ↵Ginger Bill2017-06-221-22/+126
| | | | statements
* Code will compile as 32 bit but will causes errors in the linker on WindowsGinger Bill2017-06-191-47/+47
|
* `#location(..)` and `#call_location`Ginger Bill2017-06-181-1/+1
|