@anysphere/scip-typescript
Version:
SCIP indexer for TypeScript and JavaScript
20 lines (16 loc) • 1.1 kB
text/typescript
// < definition syntax 1.0.0 src/`property-assignment-reference.ts`/
import {
propertyAssignment,
//^^^^^^^^^^^^^^^^^^ reference syntax 1.0.0 src/`property-assignment.ts`/propertyAssignment().
shorthandPropertyAssignment,
//^^^^^^^^^^^^^^^^^^^^^^^^^^^ reference syntax 1.0.0 src/`property-assignment.ts`/shorthandPropertyAssignment().
} from './property-assignment'
// ^^^^^^^^^^^^^^^^^^^^^^^ reference syntax 1.0.0 src/`property-assignment.ts`/
export function run(): string {
// ^^^ definition syntax 1.0.0 src/`property-assignment-reference.ts`/run().
return propertyAssignment().a + shorthandPropertyAssignment().a
// ^^^^^^^^^^^^^^^^^^ reference syntax 1.0.0 src/`property-assignment.ts`/propertyAssignment().
// ^ reference syntax 1.0.0 src/`property-assignment.ts`/a0:
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^ reference syntax 1.0.0 src/`property-assignment.ts`/shorthandPropertyAssignment().
// ^ reference syntax 1.0.0 src/`property-assignment.ts`/a1:
}