1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-06-14 07:21:30 +00:00
Commit Graph

161 Commits

Author SHA1 Message Date
c74eed2bd8 Add initial std Symbol; Fix some type inference issues 2018-06-21 19:42:18 +02:00
7ed55f7ea6 Emit a proper error when trying to return a value from a void function, fixes 2018-06-21 03:47:05 +02:00
dd4be7b693 Fix some map issues; Simplify internal ArrayBuffer API a bit 2018-06-20 15:51:47 +02:00
48e96cbcf5 Add initial map implementation to tests, see 2018-06-19 04:23:22 +02:00
24d3371735 Update dependencies 2018-06-14 16:23:37 +02:00
c102fc9848 Minor CLI and README cleanup 2018-06-14 15:57:04 +02:00
e18165bbbc Remove chalk dependency and replace it with something simpler, fixes 2018-06-12 18:34:39 +02:00
25b433dca9 Support 'import * as' directives, see 2018-06-12 00:45:19 +02:00
47f2e0950a Make 'instanceof' behave like TS if the lhs is nullable 2018-06-09 02:01:45 +02:00
7478c8a0d3 Initial implementation of 'instanceof'
Works like an assignability check for now / does not yet honor nullables.
2018-06-07 17:04:41 +02:00
cea69a6de1 Unify operator overloading and reuse arguments where possible; Update Binaryen; Update dist files 2018-06-05 23:09:08 +02:00
0054eae491 Handle numeric separators in integer literals while tokenizing 2018-06-02 13:39:24 +02:00
f69bccfe09 Add @operator.binary, @operator.prefix, @operator.postfix decorators for 2018-06-01 14:17:27 +02:00
9d25f78fc1 Implement 'this' context parsing and serialization; Other minor improvements 2018-05-30 16:22:56 +02:00
d0244a9b0f Add an error for missing initializers on default params, fixes ; Fix detection of terminated switch cases and improve tests, fixes 2018-05-27 12:24:16 +02:00
7ad13f9d65 Add a 'call_indirect' builtin to emit arbitrary calls (might trap at runtime); Optimize 'for' loop compilation a bit 2018-05-25 15:59:17 +02:00
829af2285c Fix continue labels in 'for' loops skipping the incrementor 2018-05-23 11:32:12 +02:00
c897b8405b Update dist files 2018-05-22 12:10:56 +02:00
33b10e347b Properly resolve top level enums to i32s, see 2018-05-22 12:06:03 +02:00
ea0eb7f1a5 Add a simple UTF8 converter, i.e. for calling C++ APIs; Fix disabling 'abort' entirely 2018-05-21 23:14:47 +02:00
73417a9a06 Move 'abort' out of builtins and make it overridable
Now defaults to 'env.abort' as imported in lib/env.ts, but can be overridden through '--use abort=someThingElseOrNothingAtAll'
2018-05-21 18:48:29 +02:00
940392f463 Fix handling of readonly/type as identifiers, see 2018-05-21 11:14:14 +02:00
e049e72171 Fix a few issues with TSD generation; Update Binaryen 2018-05-21 10:31:00 +02:00
6c0a5c47d9 Update Binaryen and take care of 2018-05-14 16:55:55 +02:00
e415377cda Avoid trampolines where optional arguments are constant literals, see ; Fix temporary local flags not being cleared; Fix inlined temporary locals not being free'd; Fix inlined flows not breaking after returns; Allow changetype of u32s, i.e. function pointers 2018-05-11 16:31:56 +02:00
ef9b43740d Eliminate leftover temporary function types using latest Binaryen 2018-05-09 16:33:42 +02:00
1f3bb61fae Fix issues with more than 64 locals, see 2018-05-08 22:16:12 +02:00
27f0621ee9 Add support for the 'mutable-global' proposal behind a feature flag 2018-05-08 09:27:56 +02:00
1bf0ca6525 Add a mechanism to enable additional (experimental) features and start with sign extension operations; Hashing experimentation 2018-05-08 00:36:19 +02:00
25a1f6230a Suppress some unnecessary blocks and nops; Fix compilation of always 'break'ing 'do's 2018-05-06 05:46:35 +02:00
2f8f477ab0 Update dist files; Unify some examples 2018-05-06 01:32:58 +02:00
8b5d1d7f74 Minor refactoring; Fix n-body TS build 2018-04-28 18:07:20 +02:00
2aea14b518 Add more inline-assembler-ish builtins; Update Binaryen 2018-04-27 19:12:25 +02:00
06f99406be Experimenting with inline-assembler-ish explicit builtins
Starting with explicit loads and stores as part of the respective type namespaces. Might become handy for use with portable code, because these can be polyfilled, while load<T> and store<T> can't.
2018-04-27 00:08:41 +02:00
6d6d1dddcf Improve inlining where locals can be aliased; Add a crude mechanism for explicit unchecked array accesses
The `unchecked` builtin should be handled with ultimate care and it would be a lot better if there'd be a mechanism doing this automatically.
2018-04-25 05:04:35 +02:00
391db28fe2 Always try to eliminate branches if tree-shaking is enabled 2018-04-24 23:11:11 +02:00
de98a19eb8 Implement dynamic array literals 2018-04-23 22:49:04 +02:00
88b00c1689 Use the element type annotated on the setter when doing indexed sets 2018-04-23 16:17:33 +02:00
2ff1bb745a Fix some diagnostic issues when skipping invalid statements, see ; Make game-of-life example somewhat interactive; Update dist files 2018-04-22 23:13:02 +02:00
05117f9ee3 Make sure that contextual type arguments are passed when resolving the target of a new expression; Fix decoding of UTF8 strings with more than two code units in the Binaryen interface 2018-04-22 00:17:14 +02:00
350befee9b Also compile the constructor if a class is exported 2018-04-19 02:58:04 +02:00
5a2f834c0d Fix game-of-life example inconsistencies; Fix ternary expression issues in void contexts and variable statements; Simplify HEAP_BASE handling 2018-04-18 15:12:33 +02:00
4026c087fd Export the trampoline and provide a helper for functions that take optional arguments 2018-04-17 16:04:29 +02:00
4929fca363 Move some numeric builtins to stdlib; Minor refactoring 2018-04-17 02:50:38 +02:00
81223977d0 Fix external names of class exports and similar; Support a few more kinds in TSDBuilder, see 2018-04-15 00:34:19 +02:00
ee73a4d28f Initial type parameter inference, see
This catches the most common cases but doesn't yet implement inference involving the return type because some prequesites are not yet in place (see test case).
2018-04-13 12:25:27 +02:00
748e811137 Proper isNaN/isFinite without a temp. local 2018-04-12 20:40:00 +02:00
5b97427bfa Update dist files 2018-04-11 23:37:33 +02:00
dcc0e284fb Make type checking builtins also accept just a type argument 2018-04-07 23:31:36 +02:00
8ffc7d463d Fix invalid assertion when resolving element accesses 2018-04-07 21:58:22 +02:00