Home
last modified time | relevance | path

Searched refs:lastDecorator (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/src/services/codefixes/
DfixOverrideModifier.ts146 const lastDecorator = findLast(modifiers, isDecorator); constant
150lastDecorator ? skipTrivia(sourceFile.text, lastDecorator.end) : classElement.getStart(sourceFile);
/third_party/typescript/src/services/
Dbreakpoints.ts38 …const lastDecorator = canHaveDecorators(startNode) ? findLast(startNode.modifiers, isDecorator) : … constant
39 const start = lastDecorator ?
40 skipTrivia(sourceFile.text, lastDecorator.end) :
/third_party/typescript/src/compiler/
Dutilities.ts540 …const lastDecorator = !nodeIsMissing(node) && canHaveModifiers(node) ? findLast(node.modifiers, is… constant
541 if (!lastDecorator) {
545 return skipTrivia((sourceFile || getSourceFileOfNode(node)).text, lastDecorator.end);
5451 … const lastDecorator = canHaveModifiers(node) ? findLast(node.modifiers, isDecorator) : undefined; constant
5452 return lastDecorator && !positionIsSynthesized(lastDecorator.end)
5453 ? moveRangePos(node, lastDecorator.end)
/third_party/typescript/lib/
Dtsc.js11499 …var lastDecorator = !nodeIsMissing(node) && ts.canHaveModifiers(node) ? ts.findLast(node.modifiers…
11500 if (!lastDecorator) {
11503 return ts.skipTrivia((sourceFile || getSourceFileOfNode(node)).text, lastDecorator.end);
15521 …var lastDecorator = ts.canHaveModifiers(node) ? ts.findLast(node.modifiers, ts.isDecorator) : unde…
15522 return lastDecorator && !positionIsSynthesized(lastDecorator.end)
15523 ? moveRangePos(node, lastDecorator.end)
DtypingsInstaller.js15027 …var lastDecorator = !nodeIsMissing(node) && ts.canHaveModifiers(node) ? ts.findLast(node.modifiers…
15028 if (!lastDecorator) {
15031 return ts.skipTrivia((sourceFile || getSourceFileOfNode(node)).text, lastDecorator.end);
19675 …var lastDecorator = ts.canHaveModifiers(node) ? ts.findLast(node.modifiers, ts.isDecorator) : unde…
19676 return lastDecorator && !positionIsSynthesized(lastDecorator.end)
19677 ? moveRangePos(node, lastDecorator.end)