Skip to content

Commit c7e8a99

Browse files
committed
Rename to _superIndex to test conflict
1 parent e58ffcf commit c7e8a99

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

src/github.com/derekparker/delve

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit dcf9d4fc6bfb3a15a7eb5dcc540da27b1b0676c8

src/github.com/karrick/godirwalk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit e404d5af9b9b543c7100f4bf3757c1c3b5399fa9

src/github.com/pkg/errors

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 816c9085562cd7ee03e7f8188a1cfd942858cded

tests/cases/conformance/async/es2017/asyncMethodWithSuperConflict_es6.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class B extends A {
1010
// async method with only call/get on 'super' does not require a binding
1111
async simple() {
1212
const _super = null;
13-
const _superProps = null;
13+
const _superIndex = null;
1414
// call with property access
1515
super.x();
1616
// call additional property.
@@ -29,7 +29,7 @@ class B extends A {
2929
// async method with assignment/destructuring on 'super' requires a binding
3030
async advanced() {
3131
const _super = null;
32-
const _superProps = null;
32+
const _superIndex = null;
3333
const f = () => {};
3434

3535
// call with property access

0 commit comments

Comments
 (0)