Andreas Kling
|
6ddbe8f953
|
LibJS: Add [[HostDefined]] internal slot to Script objects
In C++, this is a raw pointer to a Script::HostDefined.
|
2022-02-07 19:16:46 +01:00 |
|
Andreas Kling
|
85cf80507f
|
LibJS: Make ScriptOrModule use WeakPtr instead of raw pointers
|
2022-02-07 19:16:45 +01:00 |
|
davidot
|
12c2f30c54
|
LibJS: Add filename tracking to Script and Module
This will allow us to resolve modules dynamically loaded from a script.
|
2022-01-22 01:21:18 +00:00 |
|
Andreas Kling
|
10c489713d
|
LibJS+LibWeb: Let JS::Script::parse() return a list of errors (on error)
These are really supposed to be a list of SyntaxError objects, but for
now we simply return all the Parser::Error objects we got from Parser.
|
2021-09-14 21:41:51 +02:00 |
|
Andreas Kling
|
f08a46bd9e
|
LibJS: Make JS::Script keep the VM alive
Script has a Handle member (m_realm), and for handles to remain valid,
the VM must stay alive.
|
2021-09-14 21:41:51 +02:00 |
|
Linus Groh
|
106f295916
|
LibJS+LibWeb: Make JS::Script and Web::HTML::ClassicScript use Realms
The spec wants Script Records to have a Realm, not a GlobalObject.
|
2021-09-12 15:18:25 +02:00 |
|
Andreas Kling
|
1484980f8f
|
LibWeb+LibJS: Remember source filenames when using HTML::Script
It's a lot easier to debug JavaScript problems if you can see which file
the errors are in. :^)
|
2021-09-11 00:36:37 +02:00 |
|
Andreas Kling
|
d823d7da54
|
LibJS: Implement the ParseScript AO (as JS::Script::parse())
|
2021-09-09 21:25:10 +02:00 |
|
Andreas Kling
|
612a23d6fc
|
LibJS: Start adding a JS::Script class (spec's "Script Record")
|
2021-09-09 21:25:10 +02:00 |
|