mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-22 02:35:48 -05:00
Update test to reflect new behavior
This commit is contained in:
@@ -10,15 +10,16 @@
|
||||
|
||||
verify.codeFixAll({
|
||||
fixId: "addMissingMember",
|
||||
fixAllDescription: "Add all missing members",
|
||||
newFileContent:
|
||||
`class C {
|
||||
y(x: number, arg1: string, z: boolean): any {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
z: boolean = true;
|
||||
method() {
|
||||
const x = 0;
|
||||
this.y(x, "a", this.z);
|
||||
}
|
||||
y(x: number, arg1: string, z: boolean): any {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
}`,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user