aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Parallelization of the ParserGinger Bill2017-07-301-66/+168
| | | | | ~66% reduction (unoptimized build) ~30% reduction (optimized build)
* `transmute(type)x`; Minor code clean upGinger Bill2017-07-301-0/+7
|
* Remove dead code for the "fixed" map ideaGinger Bill2017-07-291-16/+11
|
* Fix map internal type generationGinger Bill2017-07-291-3/+2
|
* Fix IR print bug for empty structs;gingerBill2017-07-281-3/+13
|
* Fix struct parameter bugsGinger Bill2017-07-211-0/+2
|
* Internal changes; thread.odin for windows onlyGinger Bill2017-07-201-9/+22
|
* Fix polymorphic element types usage; Empty `union` as opaque typeGinger Bill2017-07-201-1/+3
|
* Change internals from `Record` to `Struct`Ginger Bill2017-07-201-5/+5
|
* Update internals of a Union and TupleGinger Bill2017-07-201-23/+26
|
* Fix parsing bug with procedure types in return valuesGinger Bill2017-07-191-21/+23
|
* Fix minor parsing bug with procedure return typesGinger Bill2017-07-191-1/+8
|
* `type_info_of`; enum_value_to_string and string_to_enum_valueGinger Bill2017-07-191-0/+1
|
* Change union layout to store type info rather than an integer; ternary ↵Ginger Bill2017-07-191-1/+1
| | | | expression for types with constant condition
* Fix parsing error for compound literalsGinger Bill2017-07-181-0/+1
|
* Merge `raw_union` into `struct` as a memory layout tag `#raw_union`Ginger Bill2017-07-181-39/+21
|
* 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
|