aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Make record semicolon syntax more consistentGinger Bill2017-07-101-132/+70
* Use semicolons as field delimiters in recordsGinger Bill2017-07-101-10/+129
* Fix _preload.odin; Add for in without parameters; Change sync.Mutex for windowsGinger Bill2017-07-081-1/+18
* Fix `else do`Ginger Bill2017-07-071-59/+25
* Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functionsGinger Bill2017-07-061-133/+133
* Allow for overloading of polymorphic proceduresGinger Bill2017-07-041-1/+1
* *_of as keyords; Allow constant aliasing for user/built-in procedures, import...Ginger Bill2017-07-041-21/+64
* Allow overloading of polymorphic proceduresGinger Bill2017-07-021-1/+1
* Fix `do` on `for` loopsGinger Bill2017-07-011-3/+3
* `do` keyword for inline statements instead of blocksGinger Bill2017-07-011-12/+36
* Implicit parametric polymorphic proceduresGinger Bill2017-06-291-2/+8
* Remove `Type`Ginger Bill2017-06-291-2/+37
* Add `Type` -- Runtime type for comparing types (similar to TypeInfo but simpler)Ginger Bill2017-06-291-1/+1
* Make `AstNodeIdent` a struct wrapping its `Token`Ginger Bill2017-06-291-3/+5
* Remove `var` and `const` keywords; Fix default parameter syntaxGinger Bill2017-06-281-47/+20
* :: style procedure declarations; remove old parsing codeGinger Bill2017-06-281-193/+3
* Remove `type` prefix declarationsGinger Bill2017-06-281-7/+3
* Disable `var` and `const` declarationsGinger Bill2017-06-281-3/+16
* Basic allowance for := and ::Ginger Bill2017-06-281-2/+75
* Remove `let`Ginger Bill2017-06-261-14/+9
* Undef value `---` (for setting a value to be uninitialized/undefined)Ginger Bill2017-06-261-0/+11
* Generic procedures generate types on useGinger Bill2017-06-251-2/+11
* Basic command line flags: e.g. `-opt=0`Ginger Bill2017-06-241-4/+7
* `expand_to_tuple`Ginger Bill2017-06-241-2/+18
* Use UTF-8 command line on windowsGinger Bill2017-06-241-2/+4
* Clean up code for return statements, slightlyGinger Bill2017-06-221-27/+43
* Default result values for procedure types; Named result values in `return` st...Ginger Bill2017-06-221-25/+90
* Update old demosGinger Bill2017-06-211-24/+49
* Implicit Parameter Passing based `context` system (replacing Thread Local Sto...Ginger Bill2017-06-201-7/+12
* Code will compile as 32 bit but will causes errors in the linker on WindowsGinger Bill2017-06-191-32/+35
* Begin work on documentation generationGinger Bill2017-06-181-84/+212
* `#location(..)` and `#call_location`Ginger Bill2017-06-181-15/+19
* Fix error reporting for foreign blocksGinger Bill2017-06-171-1/+3
* Declaration grouping uses () rather than {}; Fix some problem with compilatio...Ginger Bill2017-06-171-15/+17
* Code use API rather than raw CheckerInfo; begin work on generic proceduresGinger Bill2017-06-151-19/+14
* Add foreign variablesGinger Bill2017-06-151-12/+64
* C-style `c_vararg`s (Not heavily tested)Ginger Bill2017-06-131-3/+18
* Declaration grouping uses braces rather than parenthesesGinger Bill2017-06-131-4/+4
* Remove redundant paths in parsingGinger Bill2017-06-121-53/+54
* `foreign` blocks for proceduresGinger Bill2017-06-121-76/+105
* Update default field value syntax; Use more declaration groupingsGinger Bill2017-06-121-3/+4
* Check for empty generic declaration listGinger Bill2017-06-121-1/+8
* foreign_library allow for Pascal-style groupingGinger Bill2017-06-121-249/+118
* Pascal style declaration grouping with ()Ginger Bill2017-06-121-216/+319
* `import` and `import_load` as keywords; Fix procedure literal call trickGinger Bill2017-06-121-59/+71
* Prefix `type` and `let` to replace `immutable`Ginger Bill2017-06-121-27/+66
* Prefix `proc` syntaxGinger Bill2017-06-121-7/+62
* Remove := with var and :: with constGinger Bill2017-06-121-22/+45
* Make default arguments for records invalid syntaxGinger Bill2017-06-111-1/+1
* Default parameters for proceduresGinger Bill2017-06-111-12/+48