aboutsummaryrefslogtreecommitdiff
path: root/src/checker.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Set procedure grouping type to `t_invalid`gingerBill2017-12-061-1/+1
|
* Make core library use procedure groupings rather than normal overloadinggingerBill2017-12-041-1/+1
|
* Fix procedure groupinggingerBill2017-12-031-1/+1
|
* Procedure grouping `foo :: proc[foo16, foo32];`gingerBill2017-12-031-0/+7
|
* Remove `vector` type (will be replaced by something else in the future)gingerBill2017-11-301-6/+0
|
* Remove `using` in arrays; Remove `_` non-exported struct fieldsgingerBill2017-11-281-3/+34
| | | | Start determining slow parts of the compiler
* New slice memory layout (ptr+len); `byte`gingerBill2017-11-261-10/+5
|
* `nil_allocator`; Fix IR type checking assert; `append_string`gingerBill2017-11-261-1/+0
|
* Disable all cyclic importationsgingerBill2017-11-131-5/+8
|
* In error messages, remove ` with '; Fix error messages for `switch`gingerBill2017-11-121-67/+67
|
* Fix link_name overridinggingerBill2017-11-091-7/+15
|
* Fix opening file without close; Minor fixesgingerBill2017-11-091-0/+1
|
* #const value procedure parameters; $N for polymorphic array lengthsgingerBill2017-11-051-9/+9
|
* More code clean upgingerBill2017-11-041-12/+13
|
* Cleanup attribute handlinggingerBill2017-11-041-30/+140
|
* Foreign context cleanupgingerBill2017-11-031-22/+23
|
* `link_prefix`; `thread_local`; fix `link_name` for file-scope variablesgingerBill2017-11-031-6/+16
|
* Add string_set.cpp; Code clean upgingerBill2017-10-301-1/+1
|
* `@(default_calling_convention = ...)` for `foreign` blocksgingerBill2017-10-291-0/+82
|
* Attributes; @(link_name="foo")gingerBill2017-10-291-3/+11
|
* #alias type declarations; core library additions; `_global` import name for ↵gingerBill2017-10-291-0/+12
| | | | the global scope
* 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
|