aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Clean up code for return statements, slightlyGinger Bill2017-06-221-27/+43
|
* Default result values for procedure types; Named result values in `return` ↵Ginger Bill2017-06-221-25/+90
| | | | statements
* Update old demosGinger Bill2017-06-211-24/+49
|
* Implicit Parameter Passing based `context` system (replacing Thread Local ↵Ginger Bill2017-06-201-7/+12
| | | | Storage (TLS) approach)
* Code will compile as 32 bit but will causes errors in the linker on WindowsGinger Bill2017-06-191-32/+35
|
* Begin work on documentation generationGinger Bill2017-06-181-84/+212
|
* `#location(..)` and `#call_location`Ginger Bill2017-06-181-15/+19
|
* Fix error reporting for foreign blocksGinger Bill2017-06-171-1/+3
|
* Declaration grouping uses () rather than {}; Fix some problem with ↵Ginger Bill2017-06-171-15/+17
| | | | compilation on *nix
* Code use API rather than raw CheckerInfo; begin work on generic proceduresGinger Bill2017-06-151-19/+14
|
* Add foreign variablesGinger Bill2017-06-151-12/+64
|
* C-style `c_vararg`s (Not heavily tested)Ginger Bill2017-06-131-3/+18
|
* Declaration grouping uses braces rather than parenthesesGinger Bill2017-06-131-4/+4
|
* Remove redundant paths in parsingGinger Bill2017-06-121-53/+54
|
* `foreign` blocks for proceduresGinger Bill2017-06-121-76/+105
|
* Update default field value syntax; Use more declaration groupingsGinger Bill2017-06-121-3/+4
|
* Check for empty generic declaration listGinger Bill2017-06-121-1/+8
|
* foreign_library allow for Pascal-style groupingGinger Bill2017-06-121-249/+118
|
* Pascal style declaration grouping with ()Ginger Bill2017-06-121-216/+319
|
* `import` and `import_load` as keywords; Fix procedure literal call trickGinger Bill2017-06-121-59/+71
|
* Prefix `type` and `let` to replace `immutable`Ginger Bill2017-06-121-27/+66
|
* Prefix `proc` syntaxGinger Bill2017-06-121-7/+62
|
* Remove := with var and :: with constGinger Bill2017-06-121-22/+45
|
* Make default arguments for records invalid syntaxGinger Bill2017-06-111-1/+1
|
* Default parameters for proceduresGinger Bill2017-06-111-12/+48
|
* Named procedure callsGinger Bill2017-06-111-0/+5
|
* Remove unnecessary `typedef` usageGinger Bill2017-06-081-119/+118
|
* Use templated `Array` with bounds checkingGinger Bill2017-06-081-54/+56
|
* Update `String` to use overloadingGinger Bill2017-06-081-40/+40
|
* Build as C++Ginger Bill2017-06-081-0/+4255
|
* Change extensions .cpp to .cGinger Bill2016-11-231-3243/+0
|
* Compile as C! Whoop!Ginger Bill2016-11-231-34/+34
|