aboutsummaryrefslogtreecommitdiff
path: root/src/check_expr.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix typo for some built-in proceduresGinger Bill2017-06-251-3/+3
|
* Basic command line flags: e.g. `-opt=0`Ginger Bill2017-06-241-16/+37
|
* `expand_to_tuple`Ginger Bill2017-06-241-7/+32
|
* Wrap hashing functionsGinger Bill2017-06-221-1/+5
|
* Default result values for procedure types; Named result values in `return` ↵Ginger Bill2017-06-221-7/+72
| | | | statements
* Amend Checker APIGinger Bill2017-06-211-1/+1
|
* Implicit Parameter Passing based `context` system (replacing Thread Local ↵Ginger Bill2017-06-201-1/+5
| | | | Storage (TLS) approach)
* Compiler compiles for x86 (doesn't work properly)Ginger Bill2017-06-191-8/+17
|
* Code will compile as 32 bit but will causes errors in the linker on WindowsGinger Bill2017-06-191-223/+223
|
* Begin work on documentation generationGinger Bill2017-06-181-1/+42
|
* Implement `assert` and `panic` in user side codeGinger Bill2017-06-181-27/+0
| | | | Removes 2 more built-in procedures!
* `#location(..)` and `#call_location`Ginger Bill2017-06-181-26/+86
|
* Declaration grouping uses () rather than {}; Fix some problem with ↵Ginger Bill2017-06-171-1/+1
| | | | compilation on *nix
* Code use API rather than raw CheckerInfo; begin work on generic proceduresGinger Bill2017-06-151-51/+96
|
* Merge size_of and size_of_val et al.Ginger Bill2017-06-151-102/+31
|
* Add CheckerInfo API functionsGinger Bill2017-06-151-43/+46
|
* C-style `c_vararg`s (Not heavily tested)Ginger Bill2017-06-131-1/+39
|
* Fix compilation error for Invalid EntityKindGinger Bill2017-06-131-1/+5
|
* Declaration grouping uses braces rather than parenthesesGinger Bill2017-06-131-6/+0
|
* foreign_library allow for Pascal-style groupingGinger Bill2017-06-121-8/+2
|
* `import` and `import_load` as keywords; Fix procedure literal call trickGinger Bill2017-06-121-1/+1
|
* Prefix `proc` syntaxGinger Bill2017-06-121-1/+1
|
* Fix trailing default argument checkingGinger Bill2017-06-111-12/+34
|
* Minor change for overloaded proceduresGinger Bill2017-06-111-2/+1
|
* Default parameters for proceduresGinger Bill2017-06-111-27/+91
|
* Allow for ignoring named procedural call arguments with `_`Ginger Bill2017-06-111-8/+13
|
* Named procedure callsGinger Bill2017-06-111-75/+242
|
* Use templated `Map` for extra type safetyGinger Bill2017-06-081-33/+33
|
* Remove unnecessary `typedef` usageGinger Bill2017-06-081-14/+14
|
* Use templated `Array` with bounds checkingGinger Bill2017-06-081-105/+103
|
* Update `String` to use overloadingGinger Bill2017-06-081-29/+29
|
* Build as C++Ginger Bill2017-06-081-0/+6430