aboutsummaryrefslogtreecommitdiff
path: root/src/check_decl.cpp
Commit message (Collapse)AuthorAgeFilesLines
* In error messages, remove ` with '; Fix error messages for `switch`gingerBill2017-11-121-32/+32
|
* Fix link_name overridinggingerBill2017-11-091-4/+4
|
* More code clean upgingerBill2017-11-041-16/+11
|
* Cleanup attribute handlinggingerBill2017-11-041-179/+21
|
* Custom thread local modelsgingerBill2017-11-031-7/+14
|
* `link_prefix`; `thread_local`; fix `link_name` for file-scope variablesgingerBill2017-11-031-2/+61
|
* Add string_set.cpp; Code clean upgingerBill2017-10-301-7/+71
|
* `@(default_calling_convention = ...)` for `foreign` blocksgingerBill2017-10-291-4/+11
|
* Attributes; @(link_name="foo")gingerBill2017-10-291-12/+85
|
* #alias type declarations; core library additions; `_global` import name for ↵gingerBill2017-10-291-8/+28
| | | | the global scope
* Refactor code to remove entity flag for exportgingerBill2017-10-151-3/+3
|
* Remove name mangling for `foreign export` variablesgingerBill2017-10-151-2/+2
|
* `foreign export` blockgingerBill2017-10-151-3/+7
| | | | | | | | | | | ``` foreign export { my_i32: i32; my_foo :: proc() -> i32 { return 123; } } ```
* `match` to `switch`; Optional semicolons after "import" statementsGinger Bill2017-10-011-1/+8
|
* Reserve the link_name `main`Ginger Bill2017-09-301-0/+4
|
* Allow for multiple library collections; Store AstFile as pointerGinger Bill2017-09-101-1/+1
|
* Global variable dependency initialization orderingGinger Bill2017-08-201-21/+15
| | | | Fuck graph theory
* v0.6.0v0.6.0Ginger Bill2017-07-301-4/+6
|
* `transmute(type)x`; Minor code clean upGinger Bill2017-07-301-9/+7
|
* Minor Simplification of threading demoGinger Bill2017-07-291-1/+4
|
* Fix polymorphic element types usage; Empty `union` as opaque typeGinger Bill2017-07-201-5/+18
|
* Change internals from `Record` to `Struct`Ginger Bill2017-07-201-1/+1
|
* Update internals of a Union and TupleGinger Bill2017-07-201-1/+1
|
* Polymorphic type specialization for proceduresGinger Bill2017-07-171-8/+10
|
* Rudimentary support for parametric polymorphic typesGinger Bill2017-07-131-1/+1
|
* Change precedence order for types e.g. ^T(x) == ^(T(x))Ginger Bill2017-07-131-1/+1
|
* `cast(Type)expr`; Fix overloaded procedure determination on assignmentGinger Bill2017-07-111-0/+14
|
* Compiler Internal Changes: TypeRecord_Union -> Type_UnionGinger Bill2017-07-101-5/+0
|
* `..` half closed range; `...` open range; `...` variadic syntaxGinger Bill2017-07-071-3/+1
|
* Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functionsGinger Bill2017-07-061-49/+49
|
* Merge branch 'master' of https://github.com/gingerBill/OdinGinger Bill2017-07-041-2/+8
|\
| * Allow aliasing of aliasesGinger Bill2017-07-041-2/+8
| |
* | Allow for overloading of polymorphic proceduresGinger Bill2017-07-041-3/+8
|/
* *_of as keyords; Allow constant aliasing for user/built-in procedures, ↵Ginger Bill2017-07-041-10/+65
| | | | import names, and library names
* Disable polymorphic overloading in the global scopeGinger Bill2017-07-021-1/+2
| | | | TODO: Figure out why it does not work in the global scope
* Implicit parametric polymorphic proceduresGinger Bill2017-06-291-6/+20
|
* Make `AstNodeIdent` a struct wrapping its `Token`Ginger Bill2017-06-291-1/+1
|
* Update procedure names and extend demo.odinGinger Bill2017-06-291-3/+3
|
* :: style procedure declarations; remove old parsing codeGinger Bill2017-06-281-35/+35
|
* Remove `type` prefix declarationsGinger Bill2017-06-281-1/+1
|
* Write demo for v0.5.0Ginger Bill2017-06-261-1/+13
|
* Undef value `---` (for setting a value to be uninitialized/undefined)Ginger Bill2017-06-261-1/+6
|
* Rudimentary para-poly proceduresGinger Bill2017-06-251-2/+9
|
* Implicit Parameter Passing based `context` system (replacing Thread Local ↵Ginger Bill2017-06-201-0/+5
| | | | Storage (TLS) approach)
* Code will compile as 32 bit but will causes errors in the linker on WindowsGinger Bill2017-06-191-17/+17
|
* Add extra check for bodiless proceduresGinger Bill2017-06-151-0/+2
|
* Code use API rather than raw CheckerInfo; begin work on generic proceduresGinger Bill2017-06-151-26/+25
|
* Add foreign variablesGinger Bill2017-06-151-27/+83
|
* Add CheckerInfo API functionsGinger Bill2017-06-151-1/+5
|
* C-style `c_vararg`s (Not heavily tested)Ginger Bill2017-06-131-3/+6
|