aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove `atomic`, `++`, and `--`Ginger Bill2017-07-181-24/+2
|
* Polymorphic type specialization for proceduresGinger Bill2017-07-171-0/+3
|
* Basic procedure type parameter specializationGinger Bill2017-07-161-4/+17
|
* Rudimentary support for parametric polymorphic typesGinger Bill2017-07-131-23/+37
|
* Change precedence order for types e.g. ^T(x) == ^(T(x))Ginger Bill2017-07-131-111/+354
|
* `cast(Type)expr`; Fix overloaded procedure determination on assignmentGinger Bill2017-07-111-6/+19
|
* Clean up _preload.odin typesGinger Bill2017-07-101-8/+17
|
* `union` type allow for any types and removes common fieldsGinger Bill2017-07-101-45/+7
|
* Nested record declarationsGinger Bill2017-07-101-19/+26
|
* 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, ↵Ginger Bill2017-07-041-21/+64
| | | | import names, and library names
* 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
| | | | What was I thinking?!
* 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` ↵Ginger Bill2017-06-221-25/+90
| | | | statements
* Update old demosGinger Bill2017-06-211-24/+49
|
* Implicit Parameter Passing based `context` system (replacing Thread Local ↵Ginger Bill2017-06-201-7/+12
| | | | Storage (TLS) approach)
* 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 ↵Ginger Bill2017-06-171-15/+17
| | | | compilation on *nix
* 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
|