Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1269)

Unified Diff: test/e2e/lib.ts

Issue 2416003003: Update package name, update and lock clang-format and tslint versions, and format all source files … (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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];
« package.json ('K') | « test/call_test.ts ('k') | test/expression_test.ts » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698