aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* v0.1.1v0.1.1Ginger Bill2017-02-244-33/+33
|
* Fix minor bugs in IR for slicesGinger Bill2017-02-233-10/+6
|
* A decent union type with common fields and variantsGinger Bill2017-02-217-303/+511
|
* Begin changing `union` syntaxGinger Bill2017-02-194-44/+148
|
* Unexported struct fields on selectorsGinger Bill2017-02-191-16/+32
|
* Unexported struct fieldsGinger Bill2017-02-193-19/+48
|
* `delete` for mapsGinger Bill2017-02-193-15/+52
|
* Fix overloading bug due to `#import .`; Add sys/wgl.odinGinger Bill2017-02-193-25/+35
|
* Fix overloading bug due to comparison of named typesGinger Bill2017-02-183-18/+26
|
* Named return values but do not affect other declarationsGinger Bill2017-02-183-122/+170
|
* Change ternary expression precedenceGinger Bill2017-02-184-184/+267
|
* Ternary expression (removed if and block expression)Ginger Bill2017-02-145-424/+181
|
* Ignore previous silly commit :P I shouldn't have move itGinger Bill2017-02-141-10/+7
|
* Move error handling for castingGinger Bill2017-02-141-79/+83
|
* Prevent `cast` on pointer to union typesGinger Bill2017-02-143-6/+19
|
* Optional ok for `union_cast` (similar to map indices)Ginger Bill2017-02-145-74/+76
|
* Fix immutable rules; add some general documentationGinger Bill2017-02-149-47/+77
| | | | immutable is still a little weird and not completely what you'd expect. Maybe just not having it is better.
* Reimplement `immutable` with different rules.Ginger Bill2017-02-145-47/+45
|
* Fix index assignment rules for indirectionGinger Bill2017-02-142-42/+71
|
* Use a global to store the build context informationGinger Bill2017-02-129-220/+195
|
* Fix issue #23Ginger Bill2017-02-121-5/+4
|
* Record type field `names`Ginger Bill2017-02-125-164/+191
|
* v0.1.0v0.1.0Ginger Bill2017-02-116-126/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added: * Dynamic Arrays `[...]Type` * Dynamic Maps `map[Key]Value` * Dynamic array and map literals * Custom struct alignemnt `struct #align 8 { bar: i8 }` * Allow `_` in numbers * Variadic `append` * fmt.sprint* * Entities prefixes with an underscore do not get exported on imports * Overloaded `free` for pointers, slices, strings, dynamic arrays, and dynamic maps * enum types have an implict `names` field, a []string of all the names in that enum Removed: * Maybe/option types * immutable variables * Remove `type` keyword and other "reserved" keywords * `compile_assert` and `assert`return the value of the condition for semantic reasons Changed: * thread_local -> #thread_local * #include -> #load * Files only get checked if they are actually used * match x in y {} // For type match statements * Version numbering now starts from 0.1.0 and uses the convention: - major.minor.patch Fixes: * Many fmt.* fixes To come very Soon™: * Linux and OS X builds (unofficial ones do exist already)
* Dynamic array syntax [...]Type; make entities private with a prefix of `_`; ↵Ginger Bill2017-02-119-56/+131
| | | | fix extension checking
* Only check files that have been truly imported.Ginger Bill2017-02-117-180/+275
|
* Remove need for `type` keywordGinger Bill2017-02-105-183/+158
|
* Remove Maybe type; Enum `names`Ginger Bill2017-02-108-354/+237
|
* Fix global maps and initialize the preload types beforeGinger Bill2017-02-074-10/+18
|
* Map type info and fmt printingGinger Bill2017-02-074-20/+42
|
* `map` immutable fields: count, capacity, allocatorGinger Bill2017-02-063-6/+136
|
* `map` literalsGinger Bill2017-02-063-35/+105
|
* Make checking map key exists optionalGinger Bill2017-02-063-10/+23
|
* `map` string keys and `for` iteratorGinger Bill2017-02-063-8/+69
|
* dynamic `map` insertion and lookupGinger Bill2017-02-063-36/+42
|
* Nearly implement dynamics map, missing insertionGinger Bill2017-02-064-47/+193
|
* Begin writing dynamic map procs and fix `using` bug in IRGinger Bill2017-02-058-198/+390
|
* Add `types.odin`; Begin work on `map`Ginger Bill2017-02-056-38/+225
|
* Custom struct alignmentGinger Bill2017-02-056-264/+381
|
* Add build guards around compiling part of the code.Ginger Bill2017-02-011-1/+4
|
* Update code from OSX merge to be consistent with the rest of the codeGinger Bill2017-02-0112-195/+144
| | | | Remove some dead code whilst I was here too :P
* Merge branch 'master' of https://github.com/zhiayang/Odinzhiayang2017-02-028-229/+207
|\
| * Change internals of `context`; Disable `immutable`Ginger Bill2017-02-018-229/+207
| |
* | oh boy, basic osx/unix supportzhiayang2017-02-0213-72/+325
|/
* Remove dead codeGinger Bill2017-01-301-95/+0
|
* Change vector memory layout and operations; `for in` vector.Ginger Bill2017-01-306-294/+404
|
* Allow _ in floatsGinger Bill2017-01-292-17/+91
|
* sprint*, variadic append works correctly now.Ginger Bill2017-01-291-11/+7
|
* Variadic `append`Ginger Bill2017-01-293-32/+96
|
* Dynamic arraysGinger Bill2017-01-298-73/+434
|
* Fix untyped to `any` assignments. Fixed crash when arguments with no value ↵Ginger Bill2017-01-292-4/+8
| | | | are passed