aboutsummaryrefslogtreecommitdiff
path: root/src/checker.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update `add_type_info_type` to ignore polymorphic typesGinger Bill2017-07-301-1/+11
|
* Parallelization of the ParserGinger Bill2017-07-301-0/+2
| | | | | ~66% reduction (unoptimized build) ~30% reduction (optimized build)
* `transmute(type)x`; Minor code clean upGinger Bill2017-07-301-22/+22
|
* Fix map internal type generationGinger Bill2017-07-291-1/+1
|
* Merge branch 'master' of https://github.com/gingerBill/OdinGinger Bill2017-07-291-1/+2
|\
| * Fix IR print bug for empty structs;gingerBill2017-07-281-1/+2
| |
* | Remove empty union check on array types; Fix overflowing error printingGinger Bill2017-07-291-0/+1
|/
* Fix polymorphic element types usage; Empty `union` as opaque typeGinger Bill2017-07-201-1/+1
|
* Make `fields` et al an Array rather than a raw pointerGinger Bill2017-07-201-2/+2
|
* Change internals from `Record` to `Struct`Ginger Bill2017-07-201-12/+12
|
* Update internals of a Union and TupleGinger Bill2017-07-201-29/+23
|
* `type_info_of`; enum_value_to_string and string_to_enum_valueGinger Bill2017-07-191-10/+11
|
* Merge `raw_union` into `struct` as a memory layout tag `#raw_union`Ginger Bill2017-07-181-1/+0
|
* Remove `atomic`, `++`, and `--`Ginger Bill2017-07-181-19/+13
|
* Allow undefined --- as a struct field default value.Ginger Bill2017-07-181-1/+3
|
* Rudimentary support for parametric polymorphic typesGinger Bill2017-07-131-0/+3
|
* Change precedence order for types e.g. ^T(x) == ^(T(x))Ginger Bill2017-07-131-4/+4
|
* `cast(Type)expr`; Fix overloaded procedure determination on assignmentGinger Bill2017-07-111-2/+16
|
* Compiler Internal Changes: TypeRecord_Union -> Type_UnionGinger Bill2017-07-101-14/+11
|
* Compiler internal change: TypeRecord_Enum -> Type_EnumGinger Bill2017-07-101-3/+4
|
* `union` type allow for any types and removes common fieldsGinger Bill2017-07-101-44/+45
|
* Nested record declarationsGinger Bill2017-07-101-6/+42
|
* Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functionsGinger Bill2017-07-061-103/+103
|
* Add `free` for maps (a previous oversight)Ginger Bill2017-07-051-5/+10
|
* Replace many built-in procedures with user-level proceduresGinger Bill2017-07-041-26/+12
|
* Allow for overloading of polymorphic proceduresGinger Bill2017-07-041-10/+10
|
* *_of as keyords; Allow constant aliasing for user/built-in procedures, ↵Ginger Bill2017-07-041-0/+14
| | | | import names, and library names
* Disable polymorphic overloading in the global scopeGinger Bill2017-07-021-4/+11
| | | | TODO: Figure out why it does not work in the global scope
* Allow overloading of polymorphic proceduresGinger Bill2017-07-021-1/+1
|
* `do` keyword for inline statements instead of blocksGinger Bill2017-07-011-1/+8
|
* Implicit parametric polymorphic proceduresGinger Bill2017-06-291-0/+1
|
* Remove `Type`Ginger Bill2017-06-291-23/+15
| | | | What was I thinking?!
* Add `Type` -- Runtime type for comparing types (similar to TypeInfo but simpler)Ginger Bill2017-06-291-24/+35
|
* Make `AstNodeIdent` a struct wrapping its `Token`Ginger Bill2017-06-291-6/+6
|
* Update procedure names and extend demo.odinGinger Bill2017-06-291-7/+5
|
* :: style procedure declarations; remove old parsing codeGinger Bill2017-06-281-192/+34
|
* Basic allowance for := and ::Ginger Bill2017-06-281-0/+150
|
* Fixed demov0.5.0Ginger Bill2017-06-271-10/+5
|
* Write demo for v0.5.0Ginger Bill2017-06-261-3/+2
|
* Allow for named arguments for polymorphic proceduresGinger Bill2017-06-261-3/+7
|
* Reduce excessive node cloning on para-poly checking and fix scope bugGinger Bill2017-06-261-3/+3
|
* Remove `let`Ginger Bill2017-06-261-3/+2
|
* Undef value `---` (for setting a value to be uninitialized/undefined)Ginger Bill2017-06-261-1/+7
|
* Remove "overloading" bug of para-poly-procsGinger Bill2017-06-251-1/+5
|
* `new` as a user-level procedureGinger Bill2017-06-251-2/+2
|
* Allow nested para-poly proceduresGinger Bill2017-06-251-20/+20
|
* Rudimentary para-poly proceduresGinger Bill2017-06-251-20/+34
|
* Generic procedures generate types on useGinger Bill2017-06-251-3/+3
|
* `expand_to_tuple`Ginger Bill2017-06-241-2/+15
|
* Use UTF-8 command line on windowsGinger Bill2017-06-241-3/+4
|