- Aug 13, 2014
-
-
Ary Borenszweig authored
-
- Aug 11, 2014
-
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
- Aug 10, 2014
-
-
Ary Borenszweig authored
Added `\u` unicode escape sequences inside strings and chars (similar to Ruby). Added `String#chars`.
-
Ary Borenszweig authored
-
- Aug 09, 2014
-
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
- Aug 08, 2014
-
-
Ary Borenszweig authored
-
- Aug 07, 2014
-
-
Ary Borenszweig authored
-
- Aug 05, 2014
-
-
Ary Borenszweig authored
-
- Aug 02, 2014
-
-
Ary Borenszweig authored
-
- Jul 29, 2014
-
-
Ary Borenszweig authored
-
Ary Borenszweig authored
Fixed #154 and other constant-related bugs. Also: removed the "feature" of regex literals being automatically assigned to a constant to avoid multiple recompilations of the same regex (users must be able to choose that to)
-
- Jul 28, 2014
-
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
- Jul 27, 2014
-
-
Ary Borenszweig authored
-
- Jul 26, 2014
-
-
Ary Borenszweig authored
-
- Jul 24, 2014
-
-
Ary Borenszweig authored
-
- Jul 22, 2014
-
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
- Jul 21, 2014
-
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
- Jul 19, 2014
-
-
Ary Borenszweig authored
-
- Jul 18, 2014
-
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
- Jul 17, 2014
-
-
Ary Borenszweig authored
-
- Jul 15, 2014
-
-
Ary Borenszweig authored
-
- Jul 14, 2014
-
-
Ary Borenszweig authored
-
Ary Borenszweig authored
Macro defs are now written like `macro def name(args) : ReturnType` instead of `def name(args) : ReturnType`, which was a bit confusing. Partially related to #160
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
- Jul 10, 2014
-
-
Ary Borenszweig authored
Allow implicit conversion to C types by defining a `to_unsafe` method. This removed the hardcoded rule for converting a `String` to `UInt8*` and also allows passing an `Array(T)` to an argument expecting `Pointer(T)`.
-
Ary Borenszweig authored
-
Ary Borenszweig authored
-
- Jul 09, 2014
-
-
Ary Borenszweig authored
Lexer: check that integer literals fit their type. Also: deduce their type to Int32, Int64 or UInt64 depending on their value.
-
Ary Borenszweig authored
Replaced `@name` with `@class_name` inside macros. And: instance vars inside macros don't have the `@` in their name anymore.
-