Alexey Andreev
45d0a13c9b
In HtmlUnit, decode stack traces for all constructed exceptions
2018-11-26 15:58:51 +03:00
Alexey Andreev
0c03379206
Fix inability to catch exception when calling just created lambda
2018-11-26 14:49:03 +03:00
Alexey Andreev
85f901362f
Wrap native JS exceptions as java.lang.RuntimeException
2018-11-26 14:01:50 +03:00
Alexey Andreev
1c09a52ef9
Add option to suppress decoding stack when running JUnit tests
2018-11-26 11:41:25 +03:00
Alexey Andreev
b018e61615
Fix converting method to state machine in some cases. Fix #366
2018-11-25 18:46:45 +03:00
Alexey Andreev
a3dfc0c486
Add API to catch native JS exceptions
2018-11-23 19:54:37 +03:00
Alexey Andreev
cf9090e0fa
Use JS typed arrays to reinterpret floats and ints.
...
Also, drop IE9 support
2018-11-23 17:14:06 +03:00
Alexey Andreev
b9ec21a667
Fix Long.reverse
2018-11-23 14:32:50 +03:00
Alexey Andreev
3e152f4bb8
JUnit: remove selenium runner
2018-11-23 14:32:35 +03:00
Alexey Andreev
2c8b0b55bb
JUnit: Decode stack traces to StackTraceElement[] instead of string
2018-11-23 14:32:10 +03:00
Alexey Andreev
0376a46c06
Fix extra space added after new expression
2018-11-23 12:13:13 +03:00
Alexey Andreev
d50189ea3a
Add decoding of stack trace in JUnit adapter
2018-11-23 12:09:26 +03:00
Alexey Andreev
6d2815bc5c
Support running JUnit3 tests and improve support of JUnit4
2018-11-22 19:51:33 +03:00
Alexey Andreev
cd7a702c31
Trying to fix Travis build
2018-11-22 15:40:32 +03:00
Alexey Andreev
001e6168e3
Suppress javadoc from default IDEA run configuration
2018-11-22 15:20:02 +03:00
Alexey Andreev
753755918d
Update build config to avoid jar hell
2018-11-22 14:49:30 +03:00
Alexey Andreev
b4460b2282
Fix CMake configuration for GTK benchmark
2018-11-20 15:22:19 +03:00
Alexey Andreev
c7e7e3b3f0
Fix IDEA plugin build
2018-11-20 15:21:55 +03:00
Alexey Andreev
7588962212
Bind system properties to Maven properties.
...
Add heapSize property
2018-11-20 14:55:04 +03:00
Alexey Andreev
fc799afcda
Add Maven option to run TeaVM in a separate process
2018-11-20 14:22:35 +03:00
Alexey Andreev
0f951f8c86
Fix calculating class name in debugger
2018-11-19 15:29:02 +03:00
Alexey Andreev
f2dd398719
Fix bug in source map generation
...
This bug caused metadata lines that follow after the code
generated from Java bytecode, to be mapped to the line in
Java bytecode of the method that appears last in the generated
JavaScript
2018-11-18 02:11:28 +03:00
Alexey Andreev
e5c85dd3bd
Prevent inlining of JSBody code in some complex cases
2018-11-16 19:04:15 +03:00
Alexey Andreev
148c07336c
Generate entire code inside wrapper IIF
2018-11-15 12:47:25 +03:00
Alexey Andreev
fe151d525a
Prevent generation of function names that clash with standard objects
2018-11-14 13:55:36 +03:00
Alexey Andreev
064888c9a1
Support Java 11
2018-11-12 18:59:28 +03:00
Alexey Andreev
d4b145a523
IDEA: update project configuration
2018-11-06 14:49:14 +03:00
Alexey Andreev
4a7b70e1e8
Wasm: fix the way '!' expression translated. Also fix #365
2018-11-06 14:34:18 +03:00
Alexey Andreev
473e33a261
Fix Maven settings for preview builds in readme
2018-11-06 12:26:17 +03:00
Alexey Andreev
f8400279f8
Fix test runner
2018-10-28 00:22:24 +03:00
Alexey Andreev
4d2c075c07
Always embed runtime into generated file. Remove 'runtime' build property
2018-10-28 00:15:36 +03:00
Alexey Andreev
63b2440e48
Remove $rt_global and indirect references to runtime function
2018-10-27 22:42:25 +03:00
Alexey Andreev
149775dd95
Travis: trying to fix deployment
2018-10-26 19:45:24 +03:00
Alexey Andreev
e3d95ce64e
Travis: trying to fix deployment
2018-10-26 19:13:04 +03:00
Alexey Andreev
9d392442d5
Travis: fix deploy command
2018-10-26 16:36:45 +03:00
Alexey Andreev
eff86f6239
Less output from Maven. Delete TeaVM artifacts from local repository before caching
2018-10-26 16:10:36 +03:00
Alexey Andreev
16ea944a87
Travis: fix build configuration
2018-10-26 15:21:04 +03:00
Alexey Andreev
4c2fba42c8
Travis: fix configuration
2018-10-26 14:51:37 +03:00
Alexey Andreev
78be2d25a6
Travis: fix configuration
2018-10-26 14:12:02 +03:00
Alexey Andreev
4b13463e9f
Travis: reduce used disk space
2018-10-26 13:54:42 +03:00
Alexey Andreev
0f32c14e47
Travis: add commands to log used disk space
2018-10-25 18:49:23 +03:00
Alexey Andreev
c1fb3cdce5
Remove unnecessary cache directory from travis config
2018-10-25 15:33:59 +03:00
Alexey Andreev
2cd462bcdb
Trying to reduce disk space utilized by travis build
2018-10-25 14:02:49 +03:00
Alexey Andreev
7bef0f5bb8
Bump IDEA version to 2017.3
2018-10-25 13:15:28 +03:00
Alexey Andreev
1b78ef99a6
Fix bugs in node splitting or irreducible graphs
2018-10-24 18:16:59 +03:00
Alexey Andreev
6551f3eb68
Make JS function out of JS object when casting to JSFunctor interface
2018-10-24 14:30:26 +03:00
Alexey Andreev
5035c58533
Fix Collections.reverse for non-random access lists. Make ArrayList random access.
2018-10-23 17:01:55 +03:00
ScraM Team
65c92aab1f
Added Geolocation API interfaces, callbacks and data structures.
2018-10-23 11:53:32 +03:00
Alexey Andreev
ef011d429d
Ignore flaky test
2018-10-19 17:20:07 +03:00
Alexey Andreev
f10a2f73b8
Fix dependency analysis and virtual method calls in html4j
2018-10-19 16:38:15 +03:00