RESOLVED FIXED 148689
[ES6] Enable ES6 Module in JSC shell by default
https://bugs.webkit.org/show_bug.cgi?id=148689
Summary [ES6] Enable ES6 Module in JSC shell by default
Yusuke Suzuki
Reported 2015-09-01 14:44:04 PDT
Since the entry point to evaluate the modules are completely separated from the usual entry point to evaluate the script, we can safely enable ES6 modules in JSC shell.
Attachments
Patch (81.70 KB, patch)
2015-09-02 14:27 PDT, Yusuke Suzuki
no flags
Patch (93.92 KB, patch)
2015-09-03 23:29 PDT, Yusuke Suzuki
ggaren: review+
Yusuke Suzuki
Comment 1 2015-09-02 14:27:14 PDT
Yusuke Suzuki
Comment 2 2015-09-02 14:27:40 PDT
Yusuke Suzuki
Comment 3 2015-09-03 23:29:58 PDT
Geoffrey Garen
Comment 4 2015-09-04 14:24:41 PDT
Comment on attachment 260571 [details] Patch r=me
Yusuke Suzuki
Comment 5 2015-09-05 00:44:45 PDT
Csaba Osztrogonác
Comment 6 2015-09-05 06:39:22 PDT
(In reply to comment #5) > Committed r189431: <http://trac.webkit.org/changeset/189431> There are 162 failures on the Apple Windows buildbots.
Yusuke Suzuki
Comment 7 2015-09-05 09:12:00 PDT
(In reply to comment #6) > (In reply to comment #5) > > Committed r189431: <http://trac.webkit.org/changeset/189431> > > There are 162 failures on the Apple Windows buildbots. I'll look into it.
Yusuke Suzuki
Comment 8 2015-09-05 09:20:52 PDT
Ah, ok. I've found the problem. Now, we specify the module path with UNIX path separator like, `import A from "A/main.js"`. We already represents the current path with `\\` style. However, when concatenating the current path + the module path, we did not convert the module path to `\\` style. This causes the incorrect path like, `C:\cygwin\home\buildbot\slave\win-debug-tests\build\WebKitBuild\Debug\bin32\jsc-stress-results\.tests\modules.yaml\modules\im\./resources/assert.js` I'll submit the unreviewed attempt to fix patch.
Yusuke Suzuki
Comment 9 2015-09-05 14:07:34 PDT
The incorrect path peoblem seems solved. But it seems that the current working directory path seems truncated. I'll now checking... (I guess it is due to too long path name)
Yusuke Suzuki
Comment 10 2015-09-05 15:23:39 PDT
OK, the problem is, the max path of the Windows is limited and short (260), Modules in JSC shell uses an absolute path as an unique key to each module, so files are opened by an absolute path. Do, when getting the current working directory, the path is truncated. Now in the meantime, we will skip them in Windows. Later, I'll fix the problem and enable the tests in Windows.
Yusuke Suzuki
Comment 11 2015-09-06 20:10:41 PDT
Note You need to log in before you can comment on or make changes to this bug.