blob: 98370ab6f1a188984e40c8ab2c08ec2ef77c1901 (
plain)
1
2
3
4
5
6
7
8
9
10
|
g = newGlobal();
g.parent = this;
g.eval("(" + function() {
Debugger(parent)
.onExceptionUnwind = function(frame)
frame.eval("")
} + ")()");
m = parseModule(` s1 `);
m.declarationInstantiation();
m.evaluation();
|