@vidoc/scip-typescript
Version:
SCIP indexer for TypeScript and JavaScript
39 lines (28 loc) • 411 B
JavaScript
// format-options: showRanges
const test = () => {
const a = 'a'
const b = 'b'
return a + b
}
function test2() {
const a = 'a'
const b = 'b'
return a + b
}
class Test {
constructor() {
const a = 'a'
const b = 'b'
return a + b
}
test() {
const a = 'a'
const b = 'b'
return a + b
}
static test() {
const a = 'a'
const b = 'b'
return a + b
}
}