aboutsummaryrefslogtreecommitdiff
path: root/src/checker.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Allow for cyclic `import` but disallow cyclic `using import` and `export`Ginger Bill2017-10-071-36/+49
* `match` to `switch`; Optional semicolons after "import" statementsGinger Bill2017-10-011-76/+46
* Fix cyclic importation error printingGinger Bill2017-09-231-7/+11
* Use comma for struct field separators (disallow nesting)Ginger Bill2017-09-211-30/+26
* Fix decimal.odin assignment bugGinger Bill2017-09-201-97/+97
* Fix load order of files (again)Ginger Bill2017-09-201-22/+38
* Fix file load order and allow when statements at file scopeGinger Bill2017-09-201-280/+557
* Fix issues #95 and #96Ginger Bill2017-09-131-3/+3
* Fix issue #94Ginger Bill2017-09-111-11/+6
* Remove `when` suffixes; Implement file scope `when` statement, evaluated in s...Ginger Bill2017-09-101-320/+283
* Allow for multiple library collections; Store AstFile as pointerGinger Bill2017-09-101-36/+43
* Add `examples`Ginger Bill2017-08-271-21/+23
* `export` declarationsGinger Bill2017-08-271-104/+184
* Remove () grouping for `foreign_library`Ginger Bill2017-08-271-37/+24
* Replace `import_load` with `using import .`Ginger Bill2017-08-271-42/+33
* Import cycle checkingGinger Bill2017-08-271-225/+365
* Restrict global variables to not allow tuplesGinger Bill2017-08-201-14/+16
* Global variable dependency initialization orderingGinger Bill2017-08-201-27/+343
* v0.6.2; Use Ada_Case for typesv0.6.2Ginger Bill2017-08-031-6/+6
* Extra type safety; Fix typosGinger Bill2017-07-311-1/+1
* Update `add_type_info_type` to ignore polymorphic typesGinger Bill2017-07-301-1/+11
* Parallelization of the ParserGinger Bill2017-07-301-0/+2
* `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, import...Ginger Bill2017-07-041-0/+14
* Disable polymorphic overloading in the global scopeGinger Bill2017-07-021-4/+11
* Allow overloading of polymorphic proceduresGinger Bill2017-07-021-1/+1
* `do` keyword for inline statements instead of blocksGinger Bill2017-07-011-1/+8