aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Add support for backslash \ to consume a newlinegingerBill2021-03-141-5/+0
* Simplify `expect_semicolon_newline_error` rulegingerBill2021-03-131-18/+13
* Remove `&& false` from test codegingerBill2021-03-131-1/+1
* Add `-strict-style` flag: Enforces code style stricter whilst parsing, requir...gingerBill2021-03-131-11/+73
* Minimize TokenPos size by using `i32` for line/column/offset and file_id inst...gingerBill2021-03-041-6/+16
* Add `#force_inline` parsing directly to expression statementsgingerBill2021-02-251-0/+4
* Remove `#force_inline for` and only have `#unroll for`gingerBill2021-02-251-1/+1
* Build tag to make all declarations within a file private to the package `//+p...gingerBill2021-02-231-0/+2
* Add deprecation message for `inline` and `no_inline` to use `#force_inline` a...gingerBill2021-02-231-0/+2
* Remove `#opaque` typesgingerBill2021-02-231-12/+2
* Remove `bit_field` keyword and parsing logicgingerBill2021-02-231-60/+0
* Remove `#opaque` usage in core librarygingerBill2021-02-231-16/+0
* Deprecate `inline for` in favour of `#unroll for`gingerBill2021-02-231-23/+3
* Add `#force_inline`, `#force_no_inline` and `#unroll` for the transition to d...gingerBill2021-02-231-78/+98
* Remove `"pure"` and `"pure_none"` calling conventionsgingerBill2021-02-231-2/+0
* Remove `opaque` keyboardgingerBill2021-02-231-11/+3
* Add extra error checking in parser.cppgingerBill2021-01-151-0/+13
* Improve -insert-semicolon rulesgingerBill2020-12-091-6/+3
* Fix typos for `-insert-semicolon`gingerBill2020-12-091-10/+10
* Merge branch 'master' into parser-experimentsgingerBill2020-12-061-100/+184
|\
| * Deprecate keyword `opaque` in favour of `#opaque`gingerBill2020-12-041-0/+6
| * Remove `const` as a (reserved) keywordgingerBill2020-12-041-3/+2
| * Update `odin doc` to support multiple package outputs by passing multiple pat...gingerBill2020-11-181-11/+66
| * Fix parser logic for first comment group line in a filegingerBill2020-11-171-0/+6
| * Basic `odin doc` supportgingerBill2020-11-171-5/+1
| * Add `-show-unused` (Shows unused package declarations of all imported packages)gingerBill2020-11-171-3/+3
| * Minimize memory usage for AST nodes by using Slice<T> rather than Array<T> wh...gingerBill2020-11-161-53/+68
| * Improve logic for x->y() shorthandgingerBill2020-11-151-12/+12
| * Begin clarifying allocation patterns by changing from `heap_allocator` to spe...gingerBill2020-11-151-18/+25
| * Fix default parameters on record typesgingerBill2020-11-091-2/+2
* | Add experimental `-insert-semicolon` functionality to tokenizer and parsergingerBill2020-11-011-10/+104
|/
* Inline asm expression (-llvm-api)gingerBill2020-10-241-0/+105
* Begin work on making packages import assembly sort files (.S)gingerBill2020-10-161-1/+48
* Add `+build ignore` taggingerBill2020-10-151-21/+28
* Enforce `do` bodies to be on the same line as the control statement's conditi...gingerBill2020-10-141-0/+25
* Add `-disallow-do`gingerBill2020-09-231-0/+25
* Fix +build tag logicgingerBill2020-09-151-8/+8
* Improve error message for multi-valued global declarations not be allowedgingerBill2020-09-121-1/+6
* Update math and math/linalg; add "pure_none" calling conventiongingerBill2020-09-101-0/+1
* Revert accidental removal of `#const` for procedure variable parameters #718gingerBill2020-08-261-0/+4
* Remove some dead codegingerBill2020-07-141-4/+0
* Fix WASM foreign import namesgingerBill2020-06-041-7/+8
* Improve performance of tokenization and parsinggingerBill2020-05-271-29/+51
* Minor tokenizer performance improvementsgingerBill2020-05-271-3/+10
* Make the `using import` deprecation warning an errorgingerBill2020-05-231-1/+1
* Add `"pure"` procedure typesgingerBill2020-05-231-0/+1
* Selector Call Expressions: `x->y(123) == x.y(x, 123)`gingerBill2020-05-221-2/+22
* Remove the need for `type_of`, `size_of`, `align_of`, `offset_of` to be keywordsgingerBill2020-05-221-16/+0
* Relative pointersgingerBill2020-05-151-1/+16
* (#594) Add `#config` to replace `#defined`; Restrict `#defined` within proced...gingerBill2020-05-131-0/+3