aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Explicit procedure group; Remove implicit procedure overloadinggingerBill2017-12-091-14/+14
|
* Procedure grouping `foo :: proc[foo16, foo32];`gingerBill2017-12-031-1/+46
|
* Remove `vector` type (will be replaced by something else in the future)gingerBill2017-11-301-31/+0
|
* for key, val in some_map {}; for val, idx in some_array {}gingerBill2017-11-261-7/+7
|
* New slice memory layout (ptr+len); `byte`gingerBill2017-11-261-33/+14
|
* Changed `string_has_extension` to `string_ends_with`.Zachary Pierson2017-11-211-1/+1
| | | | Fixed macOS target triple.
* Add `-debug` command (still in development)gingerBill2017-11-191-1/+1
|
* Remove `#const`; Minor fixesgingerBill2017-11-121-17/+1
|
* In error messages, remove ` with '; Fix error messages for `switch`gingerBill2017-11-121-61/+61
|
* Allow for default arguments after a variadic parametergingerBill2017-11-121-38/+50
|
* Fix parsing errors for variadic signaturesgingerBill2017-11-101-7/+27
|
* Fixed foreign import for linux. Modified .gitignore to ignore temp files and ↵vassvik2017-11-101-0/+15
| | | | files in shared/. Added a Makefile for linux
* Change push allocator system; update core librariesgingerBill2017-11-091-56/+20
|
* Amend allocation procedures with caller location; Compound literals missing ↵gingerBill2017-11-091-0/+3
| | | | type can determine type in certain cases.
* #const value procedure parameters; $N for polymorphic array lengthsgingerBill2017-11-051-6/+22
|
* Foreign context cleanupgingerBill2017-11-031-39/+2
|
* `link_prefix`; `thread_local`; fix `link_name` for file-scope variablesgingerBill2017-11-031-18/+1
|
* Add string_set.cpp; Code clean upgingerBill2017-10-301-28/+36
|
* `@(default_calling_convention = ...)` for `foreign` blocksgingerBill2017-10-291-17/+33
|
* Fix pointer arithmetic; remove suffix #tags for proc typesgingerBill2017-10-291-61/+11
|
* Infix proc calling convention `proc "std" (...)`gingerBill2017-10-291-1/+29
|
* 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
|