diff options
Diffstat (limited to 'js/src/jsapi-tests/testStencil.cpp')
-rw-r--r-- | js/src/jsapi-tests/testStencil.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/src/jsapi-tests/testStencil.cpp b/js/src/jsapi-tests/testStencil.cpp index ab89222ebd..7d6b78d7d8 100644 --- a/js/src/jsapi-tests/testStencil.cpp +++ b/js/src/jsapi-tests/testStencil.cpp @@ -85,6 +85,8 @@ bool basic_test(const CharT* chars) { CHECK(srcBuf.init(cx, chars, length, JS::SourceOwnership::Borrowed)); JS::CompileOptions options(cx); + options.setFile("testStencil_Module"); + RefPtr<JS::Stencil> stencil = JS::CompileModuleScriptToStencil(cx, options, srcBuf); CHECK(stencil); |