JSTQL-JS-Transform/output_testing/1004error.invalid-mutation-in-closure.js

8 lines
174 B
JavaScript
Raw Normal View History

function useInvalidMutation(options) {
function test() {
// error should not point on this line
options.foo |> foo(%);
options.foo = "bar";
}
return test;
}