aboutsummaryrefslogtreecommitdiff
path: root/code
Commit message (Collapse)AuthorAgeFilesLines
* v0.1.0v0.1.0Ginger Bill2017-02-111-36/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-111-17/+26
| | | | fix extension checking
* Only check files that have been truly imported.Ginger Bill2017-02-111-10/+1
|
* Remove need for `type` keywordGinger Bill2017-02-101-1/+1
|
* Remove Maybe type; Enum `names`Ginger Bill2017-02-101-39/+38
|
* Fix global maps and initialize the preload types beforeGinger Bill2017-02-071-3/+9
|
* Map type info and fmt printingGinger Bill2017-02-071-4/+2
|
* `map` literalsGinger Bill2017-02-061-13/+33
|
* Make checking map key exists optionalGinger Bill2017-02-061-2/+2
|
* `map` string keys and `for` iteratorGinger Bill2017-02-061-5/+9
|
* dynamic `map` insertion and lookupGinger Bill2017-02-061-3/+4
|
* Nearly implement dynamics map, missing insertionGinger Bill2017-02-061-3/+4
|
* Begin writing dynamic map procs and fix `using` bug in IRGinger Bill2017-02-051-3/+8
|
* Add `types.odin`; Begin work on `map`Ginger Bill2017-02-051-1/+5
|
* Custom struct alignmentGinger Bill2017-02-052-86/+101
|
* Update code from OSX merge to be consistent with the rest of the codeGinger Bill2017-02-011-0/+2
| | | | Remove some dead code whilst I was here too :P
* Merge branch 'master' of https://github.com/zhiayang/Odinzhiayang2017-02-022-15/+28
|\
| * Change internals of `context`; Disable `immutable`Ginger Bill2017-02-011-0/+10
| |
* | oh boy, basic osx/unix supportzhiayang2017-02-021-3/+3
|/
* Change vector memory layout and operations; `for in` vector.Ginger Bill2017-01-301-0/+16
|
* Allow _ in floatsGinger Bill2017-01-291-7/+7
|
* sprint*, variadic append works correctly now.Ginger Bill2017-01-291-280/+5
|
* Variadic `append`Ginger Bill2017-01-291-6/+1
|
* Dynamic arraysGinger Bill2017-01-291-2/+13
|
* Update README.mdv0.0.6bGinger Bill2017-01-292-3/+558
|
* Fix untyped to `any` assignments. Fixed crash when arguments with no value ↵Ginger Bill2017-01-291-277/+3
| | | | are passed
* Overloaded `free`; 3 dotted ellipsisv0.0.6aGinger Bill2017-01-282-6/+9
|
* Fix parsing for block/if expression within if/for/etc. statementsv0.0.6Ginger Bill2017-01-273-257/+268
|
* Remove while loop and readd c-style for loops i.e. all loops are just `for`Ginger Bill2017-01-271-26/+15
|
* `in` keyword for `for` and `match type`Ginger Bill2017-01-271-20/+24
|
* Fix utf8 stuff, Allow _ in numbers, Begin writing next demo code.Ginger Bill2017-01-271-25/+254
|
* Remove case sensitivity for libraries on windowsGinger Bill2017-01-261-5/+0
|
* Library names - Only link with used foreign librariesGinger Bill2017-01-261-14/+1
|
* Fix pointer differences (issue #11); remove #dll_importGinger Bill2017-01-261-1/+18
|
* Basic float printingGinger Bill2017-01-261-36/+36
|
* Change casting syntax: `cast(T)x` `transmute(T)x` et al.Ginger Bill2017-01-251-6/+0
|
* Fix issue #8 - https://github.com/gingerBill/Odin/issues/8Ginger Bill2017-01-201-82/+58
|
* Fix issue #10Ginger Bill2017-01-201-58/+82
|
* `using` `immutable` `thread_local` on variable declarationsGinger Bill2017-01-191-6/+6
|
* `immutable` field prefixGinger Bill2017-01-191-0/+7
|
* Closed range `...` (both inclusive); Type comparisons with == and !=Ginger Bill2017-01-191-37/+36
|
* Change cast syntax, int(x), []byte(s), (^int)(p)Ginger Bill2017-01-171-5/+6
|
* Fix conversion of untyped integers to pointersGinger Bill2017-01-171-2/+4
|
* Comma for all field separators; Overloaded procedures follow exportation rulesGinger Bill2017-01-171-6/+11
|
* Best viable overloading procedure algorithm; `no_alias`; call expr style castsGinger Bill2017-01-171-4/+21
|
* Err on ambiguous overloaded callsGinger Bill2017-01-151-4/+15
|
* Procedure overloadingGinger Bill2017-01-151-5/+15
|
* Bug fix: comparisons with shiftsGinger Bill2017-01-151-6/+5
|
* Handle enums correctly with printfGinger Bill2017-01-081-26/+5
|
* "Old style" enumsGinger Bill2017-01-081-16/+26
| | | | | name and value information `count`, `min_value`, `max_value` constants