aboutsummaryrefslogtreecommitdiff
path: root/src/check_expr.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Update demo for both subtyping and union based EntityGinger Bill2017-07-101-0/+2
* Clean up _preload.odin typesGinger Bill2017-07-101-2/+2
* Compiler Internal Changes: TypeRecord_Union -> Type_UnionGinger Bill2017-07-101-21/+17
* Compiler internal change: TypeRecord_Enum -> Type_EnumGinger Bill2017-07-101-11/+9
* `union` type allow for any types and removes common fieldsGinger Bill2017-07-101-110/+22
* Nested record declarationsGinger Bill2017-07-101-64/+84
* Make record semicolon syntax more consistentGinger Bill2017-07-101-20/+40
* `..` half closed range; `...` open range; `...` variadic syntaxGinger Bill2017-07-071-17/+15
* Add `sort.odin`Ginger Bill2017-07-071-11/+27
* Fix `else do`Ginger Bill2017-07-071-0/+37
* Add `-show-timings`; Clean up polymorphic procedure code a bitGinger Bill2017-07-071-166/+236
* Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functionsGinger Bill2017-07-061-241/+274
* Replace many built-in procedures with user-level proceduresGinger Bill2017-07-041-6/+8
* Merge branch 'master' of https://github.com/gingerBill/OdinGinger Bill2017-07-041-0/+11
|\
| * Allow aliasing of aliasesGinger Bill2017-07-041-0/+11
* | Allow for overloading of polymorphic proceduresGinger Bill2017-07-041-33/+87
|/
* *_of as keyords; Allow constant aliasing for user/built-in procedures, import...Ginger Bill2017-07-041-8/+44
* Disable polymorphic overloading in the global scopeGinger Bill2017-07-021-62/+84
* Allow overloading of polymorphic proceduresGinger Bill2017-07-021-1/+13
* `do` keyword for inline statements instead of blocksGinger Bill2017-07-011-23/+40
* Implicit parametric polymorphic proceduresGinger Bill2017-06-291-23/+157
* Fix `odin version` printingGinger Bill2017-06-291-1/+1
* Remove `Type`Ginger Bill2017-06-291-28/+16
* Add `Type` -- Runtime type for comparing types (similar to TypeInfo but simpler)Ginger Bill2017-06-291-2/+22
* Make `AstNodeIdent` a struct wrapping its `Token`Ginger Bill2017-06-291-29/+29
* Update procedure names and extend demo.odinGinger Bill2017-06-291-15/+18
* :: style procedure declarations; remove old parsing codeGinger Bill2017-06-281-7/+7
* Disable `var` and `const` declarationsGinger Bill2017-06-281-0/+5
* Fix `expand_to_tuple`Ginger Bill2017-06-271-1/+1
* Fixed demov0.5.0Ginger Bill2017-06-271-24/+38
* Write demo for v0.5.0Ginger Bill2017-06-261-16/+20
* Fix poly-procs for variadic callsGinger Bill2017-06-261-26/+30
* Allow for named arguments for polymorphic proceduresGinger Bill2017-06-261-113/+153
* Reduce excessive node cloning on para-poly checking and fix scope bugGinger Bill2017-06-261-10/+20
* Fix IR printing for para-poly proceduresGinger Bill2017-06-261-2/+2
* Remove `let`Ginger Bill2017-06-261-0/+6
* Undef value `---` (for setting a value to be uninitialized/undefined)Ginger Bill2017-06-261-3/+35
* Remove "overloading" bug of para-poly-procsGinger Bill2017-06-251-33/+53
* `new` as a user-level procedureGinger Bill2017-06-251-1/+3
* Allow nested para-poly proceduresGinger Bill2017-06-251-0/+21
* Rudimentary para-poly proceduresGinger Bill2017-06-251-47/+107
* Generic procedures generate types on useGinger Bill2017-06-251-134/+165
* Fix typo for some built-in proceduresGinger Bill2017-06-251-3/+3
* Basic command line flags: e.g. `-opt=0`Ginger Bill2017-06-241-16/+37
* `expand_to_tuple`Ginger Bill2017-06-241-7/+32
* Wrap hashing functionsGinger Bill2017-06-221-1/+5
* Default result values for procedure types; Named result values in `return` st...Ginger Bill2017-06-221-7/+72
* Amend Checker APIGinger Bill2017-06-211-1/+1
* Implicit Parameter Passing based `context` system (replacing Thread Local Sto...Ginger Bill2017-06-201-1/+5
* Compiler compiles for x86 (doesn't work properly)Ginger Bill2017-06-191-8/+17