5cbf8727a6
Also fix a small memory leak in the output from `qjsc -e`. Fixes: https://github.com/quickjs-ng/quickjs/issues/217
14 lines
285 B
JavaScript
14 lines
285 B
JavaScript
"use strict"
|
|
const expect = "function f() { return 42 }"
|
|
function f() { return 42 }
|
|
|
|
{
|
|
const actual = f.toString()
|
|
if (actual !== expect) throw Error(actual)
|
|
}
|
|
|
|
{
|
|
const f = eval(expect + "f")
|
|
const actual = f.toString()
|
|
if (actual !== expect) throw Error(actual)
|
|
}
|