aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Allow for named arguments for polymorphic proceduresGinger Bill2017-06-261-7/+11
|
* Remove `let`Ginger Bill2017-06-261-2/+1
|
* Undef value `---` (for setting a value to be uninitialized/undefined)Ginger Bill2017-06-261-8/+30
|
* Remove "overloading" bug of para-poly-procsGinger Bill2017-06-251-8/+7
|
* `new` as a user-level procedureGinger Bill2017-06-251-0/+2
|
* Allow nested para-poly proceduresGinger Bill2017-06-251-34/+47
|
* Rudimentary para-poly proceduresGinger Bill2017-06-251-2/+17
|
* `expand_to_tuple`Ginger Bill2017-06-241-0/+17
|
* Use UTF-8 command line on windowsGinger Bill2017-06-241-1/+2
|
* Wrap hashing functionsGinger Bill2017-06-221-18/+11
|
* Default result values for procedure types; Named result values in `return` ↵Ginger Bill2017-06-221-8/+82
| | | | statements
* Amend Checker APIGinger Bill2017-06-211-46/+8
|
* Implicit Parameter Passing based `context` system (replacing Thread Local ↵Ginger Bill2017-06-201-26/+69
| | | | Storage (TLS) approach)
* Compiler compiles for x86 (doesn't work properly)Ginger Bill2017-06-191-37/+54
|
* Code will compile as 32 bit but will causes errors in the linker on WindowsGinger Bill2017-06-191-0/+11
|
* Fix #location for anonymous proceduresGinger Bill2017-06-181-2/+5
|
* Implement `assert` and `panic` in user side codeGinger Bill2017-06-181-67/+33
| | | | Removes 2 more built-in procedures!
* `#location(..)` and `#call_location`Ginger Bill2017-06-181-9/+52
|
* Declaration grouping uses () rather than {}; Fix some problem with ↵Ginger Bill2017-06-171-8/+8
| | | | compilation on *nix
* Code use API rather than raw CheckerInfo; begin work on generic proceduresGinger Bill2017-06-151-4/+1
|
* Add foreign variablesGinger Bill2017-06-151-21/+38
|
* Merge size_of and size_of_val et al.Ginger Bill2017-06-151-4/+0
|
* Add CheckerInfo API functionsGinger Bill2017-06-151-744/+714
|
* C-style `c_vararg`s (Not heavily tested)Ginger Bill2017-06-131-4/+33
|
* `foreign` blocks for proceduresGinger Bill2017-06-121-5/+9
|
* Fix IR bug for TypeSpecGinger Bill2017-06-121-1/+1
|
* Pascal style declaration grouping with ()Ginger Bill2017-06-121-62/+72
|
* Prefix `type` and `let` to replace `immutable`Ginger Bill2017-06-121-25/+23
|
* Prefix `proc` syntaxGinger Bill2017-06-121-58/+62
|
* Remove := with var and :: with constGinger Bill2017-06-121-1/+1
|
* Fix trailing default argument checkingGinger Bill2017-06-111-1/+1
|
* Default parameters for proceduresGinger Bill2017-06-111-8/+31
|
* Named procedure callsGinger Bill2017-06-111-6/+35
|
* Fix bit field bugGinger Bill2017-06-081-2/+4
|
* Use templated `Map` for extra type safetyGinger Bill2017-06-081-88/+79
|
* Remove unnecessary `typedef` usageGinger Bill2017-06-081-79/+73
|
* Use templated `Array` with bounds checkingGinger Bill2017-06-081-156/+156
|
* Update `String` to use overloadingGinger Bill2017-06-081-11/+11
|
* Build as C++Ginger Bill2017-06-081-0/+7952