diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-03 21:18:23 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-04 00:25:55 -0400 |
commit | 818ad37678e478039a9eccf543e1049fcdf32566 (patch) | |
tree | 2f97738e66c8c0b25d7fb2caa32dcec4d4d644c4 /js/console_test.ts | |
parent | f774953011cb3ad85914bc9f5f66aa121f00528d (diff) |
Rename fbs to msg.
Diffstat (limited to 'js/console_test.ts')
-rw-r--r-- | js/console_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/console_test.ts b/js/console_test.ts index 99a890e01..cbfbdb52a 100644 --- a/js/console_test.ts +++ b/js/console_test.ts @@ -111,8 +111,8 @@ test(function consoleTestStringifyWithDepth() { test(function consoleTestError() { class MyError extends Error { - constructor(msg: string) { - super(msg); + constructor(errStr: string) { + super(errStr); this.name = "MyError"; } } |