aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Attributes; @(link_name="foo")gingerBill2017-10-291-52/+118
|
* #alias type declarations; core library additions; `_global` import name for ↵gingerBill2017-10-291-2/+19
| | | | the global scope
* Fix importation of empty file (issue #128)gingerBill2017-10-181-5/+27
|
* Add anonymous `using import` names with an underscore (#127)gingerBill2017-10-181-1/+1
| | | | `using import _ "foo.odin"`
* `foreign export` blockgingerBill2017-10-151-32/+12
| | | | | | | | | | | ``` foreign export { my_i32: i32; my_foo :: proc() -> i32 { return 123; } } ```
* Change `foreign_library` to `foreign import`gingerBill2017-10-151-53/+51
|
* Syntax: Replace `foreign_system_library "kernel.lib"` to `foreign_library ↵gingerBill2017-10-151-22/+41
| | | | "system:kernel.lib"`; Remove keyword: `foreign_system_library`
* Fix issue #116Ginger Bill2017-10-091-23/+6
|
* Better error messages for import cyclesGinger Bill2017-10-081-7/+16
|
* `match` to `switch`; Optional semicolons after "import" statementsGinger Bill2017-10-011-40/+57
|
* Fix issue #104Ginger Bill2017-10-011-1/+1
|
* The position that the invalid token was found at is printedMikkel Hjortshoej2017-09-251-3/+6
|
* Use comma for struct field separators (disallow nesting)Ginger Bill2017-09-211-0/+7
|
* Fix `#export` proc tagGinger Bill2017-09-211-1/+6
|
* Fix file load order and allow when statements at file scopeGinger Bill2017-09-201-12/+29
|
* Fix issues #95 and #96Ginger Bill2017-09-131-41/+40
|
* Remove `when` suffixes; Implement file scope `when` statement, evaluated in ↵Ginger Bill2017-09-101-40/+47
| | | | source order
* Allow for multiple library collections; Store AstFile as pointerGinger Bill2017-09-101-11/+19
|
* 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
| | | | Fuck graph theory
* 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
| | | | | ~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
|