You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/sourcemaps/samples/each-block/test.js

19 lines
431 B

export function test({ assert, input, js }) {
const startIndex = js.code.indexOf('create_main_fragment');
const expected = input.locate('each');
const start = js.locate('length', startIndex);
const actual = js.mapConsumer.originalPositionFor({
line: start.line + 1,
column: start.column
});
assert.deepEqual(actual, {
6 years ago
source: 'input.svelte',
name: null,
line: expected.line + 1,
column: expected.column
});
}