aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Remove autoGinger Bill2016-11-231-5/+6
|
* typedef struct and start removing autoGinger Bill2016-11-231-23/+23
|
* Remove templated Map; replace with #include macro "templates" trickGinger Bill2016-11-231-51/+48
|
* Remove Array<T> and replace with macro versionGinger Bill2016-11-221-36/+36
|
* Remove: string overloads; deferGinger Bill2016-11-221-48/+52
|
* 128 bit integersGinger Bill2016-11-221-0/+5
| | | | Kind of works but may be buggy due to LLVM not actually sure
* Support `any` in `match type`Ginger Bill2016-11-201-1/+1
|
* #foreign_library; vector fields (x, y, z, w) for count <= 4Ginger Bill2016-11-151-21/+48
|
* Minor `Entity` refactorGinger Bill2016-10-301-13/+23
|
* Code reorganization - Separate files and slice refactoringGinger Bill2016-10-261-11/+4
|
* Separation of certain instructions for better clarity.Ginger Bill2016-10-231-1/+1
|
* Separate ssa_struct_gep and ssa_array_gep proceduresGinger Bill2016-10-231-14/+14
|
* Minor Style FixesGinger Bill2016-10-221-24/+18
|