Index: test/e2e/lib.ts |
diff --git a/test/e2e/lib.ts b/test/e2e/lib.ts |
index 13aa1acbd7a9fc4b693fff65f3838ad2fab9e1d3..4aae106891ded1bdeb52ab270659fb575691a67a 100644 |
--- a/test/e2e/lib.ts |
+++ b/test/e2e/lib.ts |
@@ -13,7 +13,9 @@ export class MyClass { |
} |
} |
- namedParam({x = '?'}: any = {}) { return 'hello' + x; } |
+ namedParam({x = '?'}: any = {}) { |
+ return 'hello' + x; |
+ } |
} |
interface Observer { |
@@ -21,9 +23,15 @@ interface Observer { |
} |
export class MySubclass extends MyClass implements Observer { |
- constructor(ctorField: string) { super(ctorField); } |
- get subclassField(): string { return this.field; } |
- update(o: Object, arg: Object) { this.field = arg.toString(); } |
+ constructor(ctorField: string) { |
+ super(ctorField); |
+ } |
+ get subclassField(): string { |
+ return this.field; |
+ } |
+ update(o: Object, arg: Object) { |
+ this.field = arg.toString(); |
+ } |
} |
export const SOME_ARRAY = [1, 2, 3]; |