Commit Graph

4807 Commits

Author SHA1 Message Date
Vexu
75218d4765 translate-c-2 macros 2019-12-15 14:44:11 +02:00
Vexu
e57e3602e7 translate-c-2 implement enums 2019-12-14 23:24:47 +02:00
Vexu
1f84586836 translate-c-2 avoid collisions with zig keywords 2019-12-14 17:00:10 +02:00
Vexu
4dae70e702 translate-c-2 container aliases 2019-12-14 13:40:33 +02:00
Vexu
a4ac6d15c4 translate-c-2 array initializer expr 2019-12-14 10:49:25 +02:00
Vexu
e4ca1f441b translate-c-2 record type 2019-12-14 02:00:01 +02:00
Andrew Kelley
21a85d4fb6 Merge pull request #3896 from Vexu/translate-c-2
Translate-c self-hosted var decl and remove translate mode
2019-12-13 15:48:10 -05:00
Vexu
45abfa9e71 revert removal of translate mode in stage 1 2019-12-13 19:06:32 +02:00
Vexu
41a67126a5 translate-c-2 typedef 2019-12-13 17:40:37 +02:00
Vexu
eb057ef41c translate-c-2 dont eval init expr 2019-12-13 15:07:10 +02:00
Andrew Kelley
e54c49be9b uncomment a now-passing behavior test 2019-12-12 19:45:33 -05:00
Andrew Kelley
1e4bae6692 update stack traces tests 2019-12-12 19:43:04 -05:00
Vexu
0795f17db2 translate-c-2 incompleteArray 2019-12-12 21:39:04 +02:00
Vexu
c759a77aa0 fix dot init parsing 2019-12-12 13:06:48 -05:00
Vexu
3bca025091 update tests 2019-12-12 18:18:43 +02:00
Merlyn Morgan-Graham
12171dba92 Add function parameters to self-hosted translate-C 2019-12-10 23:52:40 -08:00
Andrew Kelley
80882bda59 load dynamic library test: update API usage code 2019-12-10 12:48:10 -05:00
Andrew Kelley
fd6b7b160d improve dynamic library API 2019-12-10 12:28:28 -05:00
emekoi
29fd727b79 fixed windows dynamic library loading and added loading for darwin 2019-12-10 11:41:54 -05:00
Robin Voetter
4b4fbe3887 Replace @typeOf with @TypeOf in all zig source
This change was mostly made with `zig fmt` and this also modified some whitespace. Note that in some files, `zig fmt` produced incorrect code, so the change was made manually.
2019-12-10 11:09:41 -05:00
Andrew Kelley
a3f6a58c77 remove var args from the language
closes #208
2019-12-09 15:27:27 -05:00
Andrew Kelley
f205d23e65 implement async function call with @call
this removes the last usage of var args in zig std lib
2019-12-09 15:27:26 -05:00
Andrew Kelley
69b587c1d3 add regression cases for now-passing tests
closes #2749
2019-12-09 15:23:51 -05:00
Andrew Kelley
5d82744f1c ability to give comptime and non-comptime types to same parameter 2019-12-09 13:30:53 -05:00
Andrew Kelley
d571fad20e update tests to new format API 2019-12-09 00:05:21 -05:00
Andrew Kelley
8b2622cdd5 std.fmt.format: tuple parameter instead of var args 2019-12-08 22:53:51 -05:00
Andrew Kelley
5874cb04bd implement tuple concatenation 2019-12-08 22:44:41 -05:00
LemonBoy
d5e788072d Make array types (quasi-)lazy
Fixes #3843
2019-12-08 17:29:59 -05:00
Andrew Kelley
1cb19d1a46 fix anon struct literal field initialized with fn call 2019-12-08 17:28:34 -05:00
Andrew Kelley
fe8d65556d add syntax for comptime struct fields 2019-12-08 12:26:20 -05:00
Andrew Kelley
119ed128c0 implement comptime struct fields 2019-12-08 12:26:20 -05:00
LemonBoy
19c1b5a33a Fix for @Type not picking up the sentinel value
The code converted the whole TypeInfo payload into an optional type
instead of using the "sentinel" field value.

Fixes #3828
2019-12-08 10:28:29 -05:00
Andrew Kelley
edebe0586b remove compile error for peer result comptime_int and null
closes #2763
2019-12-07 13:03:43 -05:00
Andrew Kelley
ecb77af534 add regression test for fixed bug
closes #3742
2019-12-06 17:20:27 -05:00
Andrew Kelley
525b1e8fb4 Merge pull request #3856 from ziglang/builtin-call
introduce `@call` and remove other builtin calls
2019-12-06 15:49:47 -05:00
Andrew Kelley
656cc33f8d allow calling with a new stack to regress a bit
Calling with a new stack, with a runtime-known stack pointer (e.g.
not a global variable) is regressed with this branch. It is now a
compile-error, due to the Runtime Hint system not being smart enough
to mix a compile-time modifier field with a runtime stack field.
I'm OK with this regression because this feature is flawed (see #3268)
and may be deleted from the language.
2019-12-06 15:25:00 -05:00
Andrew Kelley
71b7f4b47f remove @newStackCall from zig 2019-12-06 14:52:09 -05:00
Andrew Kelley
343987cd05 remove @inlineCall from zig 2019-12-06 14:12:01 -05:00
Andrew Kelley
b1895da9b8 add behavioral test case for previous commit 2019-12-06 12:27:56 -05:00
Andrew Kelley
ef83358eb6 remove @noInlineCall from zig 2019-12-05 17:37:29 -05:00
Andrew Kelley
1f602fe8c5 implement @call
closes #3732
2019-12-05 17:07:15 -05:00
Andrew Kelley
6a046c1bcd activate start code when pub main exists
and rename LinkType->LinkMode, OutType->OutputMode
2019-12-03 12:50:42 -05:00
Vexu
ffd21c586d fix tests 2019-12-03 12:50:42 -05:00
Vexu
621c08e692 exported main must be pub 2019-12-03 12:50:42 -05:00
Vexu
20bcdab462 correct caching and add test for missing fn name 2019-12-03 12:50:41 -05:00
LemonBoy
fd7c7be33c Pick up WinMain with proper CC 2019-12-03 12:49:08 -05:00
Andrew Kelley
6d8550a7df fix crash assigning optional struct with anon literal
closes #3827
2019-12-02 01:09:06 -05:00
Andrew Kelley
c32e50f505 fix regressions in compile error tests 2019-12-01 20:53:24 -05:00
Andrew Kelley
080316cd4f fix assigning to an unwrapped optional field in an inline loop 2019-12-01 18:55:35 -05:00
Andrew Kelley
8524404f71 this test isn't passing in master branch either 2019-12-01 16:39:30 -05:00