Skip to content

Commit f1d62f4

Browse files
authored
Change watchdog tagged users (microsoft#51411)
1 parent 5e3fa9b commit f1d62f4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/error-deltas-watchdog.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
issues: write
1515
env:
1616
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17-
TAGS: "@RyanCavanaugh @DanielRosenwasser @amcasey"
17+
TAGS: "@navya9singh @RyanCavanaugh @DanielRosenwasser"
1818
steps:
1919
- name: NewErrors
2020
run: | # --json and --jq prints exactly one issue number per line of output

Diff for: src/services/refactors/extractSymbol.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ namespace ts.refactor.extractSymbol {
10161016
newNodes.push(factory.createVariableStatement(
10171017
/*modifiers*/ undefined,
10181018
factory.createVariableDeclarationList(
1019-
[factory.createVariableDeclaration(getSynthesizedDeepClone(variableDeclaration.name), /*exclamationToken*/ undefined, /*type*/ getSynthesizedDeepClone(variableDeclaration.type), /*initializer*/ call)], // TODO (acasey): test binding patterns
1019+
[factory.createVariableDeclaration(getSynthesizedDeepClone(variableDeclaration.name), /*exclamationToken*/ undefined, /*type*/ getSynthesizedDeepClone(variableDeclaration.type), /*initializer*/ call)],
10201020
variableDeclaration.parent.flags)));
10211021
}
10221022
else {

0 commit comments

Comments
 (0)