aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Library collectionsGinger Bill2017-09-071-48/+61
* `export` declarationsGinger Bill2017-08-271-6/+73
* Remove () grouping for `foreign_library`Ginger Bill2017-08-271-281/+90
* Replace `import_load` with `using import .`Ginger Bill2017-08-271-119/+149
* Import cycle checkingGinger Bill2017-08-271-0/+2
* Global variable dependency initialization orderingGinger Bill2017-08-201-5/+7
* Fix compilation issues on OSXGinger Bill2017-08-111-1/+1
* Disable threading on *nix for the time beingGinger Bill2017-08-011-1/+2
* Add mutexes to string buffer allocator usesGinger Bill2017-08-011-13/+11
* Use pthread mutexGinger Bill2017-08-011-14/+17
* Extra type safety; Fix typosGinger Bill2017-07-311-7/+6
* v0.6.0v0.6.0Ginger Bill2017-07-301-3/+3
* Parallelization of the ParserGinger Bill2017-07-301-66/+168
* `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 expres...Ginger Bill2017-07-191-1/+1
* 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, 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