aboutsummaryrefslogtreecommitdiff
path: root/src/types.cpp
Commit message (Expand)AuthorAgeFilesLines
* `transmute(type)x`; Minor code clean upGinger Bill2017-07-301-6/+11
* Remove dead code for the "fixed" map ideaGinger Bill2017-07-291-36/+11
* Fix map internal type generationGinger Bill2017-07-291-3/+3
* Merge branch 'master' of https://github.com/gingerBill/OdinGinger Bill2017-07-291-0/+4
|\
| * Fix IR print bug for empty structs;gingerBill2017-07-281-0/+4
* | Remove empty union check on array types; Fix overflowing error printingGinger Bill2017-07-291-14/+22
|/
* Fix struct parameter bugsGinger Bill2017-07-211-15/+15
* Internal changes; thread.odin for windows onlyGinger Bill2017-07-201-34/+36
* Fix polymorphic element types usage; Empty `union` as opaque typeGinger Bill2017-07-201-33/+27
* Make `fields` et al an Array rather than a raw pointerGinger Bill2017-07-201-27/+26
* Change internals from `Record` to `Struct`Ginger Bill2017-07-201-79/+75
* Update internals of a Union and TupleGinger Bill2017-07-201-31/+22
* Change union layout to store type info rather than an integer; ternary expres...Ginger Bill2017-07-191-4/+11
* Merge `raw_union` into `struct` as a memory layout tag `#raw_union`Ginger Bill2017-07-181-113/+81
* Remove `atomic`, `++`, and `--`Ginger Bill2017-07-181-23/+0
* General specialization for polymorphic parametersGinger Bill2017-07-181-1/+1
* Polymorphic type specialization for proceduresGinger Bill2017-07-171-5/+9
* Basic procedure type parameter specializationGinger Bill2017-07-161-2/+26
* Rudimentary support for parametric polymorphic typesGinger Bill2017-07-131-1/+15
* 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-2/+0
* Clean up _preload.odin typesGinger Bill2017-07-101-19/+12
* Compiler Internal Changes: TypeRecord_Union -> Type_UnionGinger Bill2017-07-101-149/+113
* Compiler internal change: TypeRecord_Enum -> Type_EnumGinger Bill2017-07-101-59/+65
* `union` type allow for any types and removes common fieldsGinger Bill2017-07-101-38/+8
* Nested record declarationsGinger Bill2017-07-101-0/+15
* Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functionsGinger Bill2017-07-061-118/+118
* Replace many built-in procedures with user-level proceduresGinger Bill2017-07-041-0/+3
* Allow for overloading of polymorphic proceduresGinger Bill2017-07-041-1/+1
* Disable polymorphic overloading in the global scopeGinger Bill2017-07-021-11/+15
* Allow overloading of polymorphic proceduresGinger Bill2017-07-021-0/+4
* `do` keyword for inline statements instead of blocksGinger Bill2017-07-011-3/+5
* Implicit parametric polymorphic proceduresGinger Bill2017-06-291-23/+35
* Fix `odin version` printingGinger Bill2017-06-291-2/+3
* Remove `Type`Ginger Bill2017-06-291-14/+0
* Add `Type` -- Runtime type for comparing types (similar to TypeInfo but simpler)Ginger Bill2017-06-291-0/+14
* Update procedure names and extend demo.odinGinger Bill2017-06-291-23/+26
* Fixed demov0.5.0Ginger Bill2017-06-271-0/+11
* Reduce excessive node cloning on para-poly checking and fix scope bugGinger Bill2017-06-261-0/+1
* Undef value `---` (for setting a value to be uninitialized/undefined)Ginger Bill2017-06-261-0/+12
* Rudimentary para-poly proceduresGinger Bill2017-06-251-0/+4
* Generic procedures generate types on useGinger Bill2017-06-251-22/+29
* Fix typo for some built-in proceduresGinger Bill2017-06-251-0/+4
* `#location(..)` and `#call_location`Ginger Bill2017-06-181-35/+38
* Declaration grouping uses () rather than {}; Fix some problem with compilatio...Ginger Bill2017-06-171-1/+1
* Code use API rather than raw CheckerInfo; begin work on generic proceduresGinger Bill2017-06-151-0/+74
* Add CheckerInfo API functionsGinger Bill2017-06-151-0/+10
* C-style `c_vararg`s (Not heavily tested)Ginger Bill2017-06-131-1/+8
* Fix trailing default argument checkingGinger Bill2017-06-111-18/+21
* Allow for ignoring named procedural call arguments with `_`Ginger Bill2017-06-111-1/+1