aboutsummaryrefslogtreecommitdiff
path: root/src/check_stmt.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Global variable dependency initialization orderingGinger Bill2017-08-201-2/+2
* 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
* 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` st...Ginger Bill2017-06-221-22/+126
* 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
* Declaration grouping uses () rather than {}; Fix some problem with compilatio...Ginger Bill2017-06-171-1/+1
* Code use API rather than raw CheckerInfo; begin work on generic proceduresGinger Bill2017-06-151-7/+4
* Add foreign variablesGinger Bill2017-06-151-1/+63
* Pascal style declaration grouping with ()Ginger Bill2017-06-121-95/+100
* Prefix `type` and `let` to replace `immutable`Ginger Bill2017-06-121-1/+1
* Remove := with var and :: with constGinger Bill2017-06-121-1/+1
* Named procedure callsGinger Bill2017-06-111-1/+1
* Use templated `Map` for extra type safetyGinger Bill2017-06-081-19/+14
* Remove unnecessary `typedef` usageGinger Bill2017-06-081-7/+7
* Use templated `Array` with bounds checkingGinger Bill2017-06-081-31/+31
* Update `String` to use overloadingGinger Bill2017-06-081-7/+7
* Build as C++Ginger Bill2017-06-081-0/+1662