aboutsummaryrefslogtreecommitdiff
path: root/src/checker.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Add anonymous `using import` names with an underscore (#127)gingerBill2017-10-181-1/+5
| | | | `using import _ "foo.odin"`
* Refactor code to remove entity flag for exportgingerBill2017-10-151-5/+9
|
* `foreign export` blockgingerBill2017-10-151-15/+26
| | | | | | | | | | | ``` foreign export { my_i32: i32; my_foo :: proc() -> i32 { return 123; } } ```
* Change `foreign_library` to `foreign import`gingerBill2017-10-151-9/+9
|
* Syntax: Replace `foreign_system_library "kernel.lib"` to `foreign_library ↵gingerBill2017-10-151-22/+29
| | | | "system:kernel.lib"`; Remove keyword: `foreign_system_library`
* Fix minimal dependency generation for polymorphic structs (related to issue ↵gingerBill2017-10-151-3/+11
| | | | #121)
* Fix `using import` to work correctlyGinger Bill2017-10-121-7/+10
|
* Minor code reorganizationGinger Bill2017-10-081-0/+1
|
* Fix `using` on import namesGinger Bill2017-10-081-3/+0
|
* Better error messages for import cyclesGinger Bill2017-10-081-48/+51
|
* 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 ↵Ginger Bill2017-09-101-320/+283
| | | | source order
* 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
| | | | Fuck graph theory
* 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
| | | | | ~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
|