aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Overloaded `free`; 3 dotted ellipsisv0.0.6aGinger Bill2017-01-286-23/+83
|
* Fix parsing for block/if expression within if/for/etc. statementsv0.0.6Ginger Bill2017-01-275-11/+22
|
* Remove while loop and readd c-style for loops i.e. all loops are just `for`Ginger Bill2017-01-274-83/+159
|
* `in` keyword for `for` and `match type`Ginger Bill2017-01-274-13/+13
|
* Fix utf8 stuff, Allow _ in numbers, Begin writing next demo code.Ginger Bill2017-01-276-36/+93
|
* Remove case sensitivity for libraries on windowsGinger Bill2017-01-261-0/+4
|
* Library names - Only link with used foreign librariesGinger Bill2017-01-267-106/+208
|
* Fix pointer differences (issue #11); remove #dll_importGinger Bill2017-01-266-34/+59
|
* Basic float printingGinger Bill2017-01-261-36/+5
|
* Change casting syntax: `cast(T)x` `transmute(T)x` et al.Ginger Bill2017-01-2513-313/+437
|
* Fix issue #8 - https://github.com/gingerBill/Odin/issues/8Ginger Bill2017-01-203-7/+8
|
* Fix issue #10Ginger Bill2017-01-206-69/+66
|
* `using` `immutable` `thread_local` on variable declarationsGinger Bill2017-01-198-187/+158
|
* `immutable` field prefixGinger Bill2017-01-196-65/+80
|
* Closed range `...` (both inclusive); Type comparisons with == and !=Ginger Bill2017-01-195-228/+91
|
* Change cast syntax, int(x), []byte(s), (^int)(p)Ginger Bill2017-01-176-146/+318
|
* Fix conversion of untyped integers to pointersGinger Bill2017-01-174-20/+124
|
* Comma for all field separators; Overloaded procedures follow exportation rulesGinger Bill2017-01-177-127/+280
|
* Best viable overloading procedure algorithm; `no_alias`; call expr style castsGinger Bill2017-01-1710-208/+335
|
* Err on ambiguous overloaded callsGinger Bill2017-01-152-76/+64
|
* Procedure overloadingGinger Bill2017-01-157-135/+584
|
* Bug fix: comparisons with shiftsGinger Bill2017-01-156-366/+403
|