Skip to content

Commit 205708a

Browse files
author
Jerry Green
committed
1 parent d4e7b9d commit 205708a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

NOTICE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ under the licensing terms detailed in LICENSE:
3333
* Piotr Oleś <[email protected]>
3434
* Saúl Cabrera <[email protected]>
3535
* Chance Snow <[email protected]>
36+
* Jerry Green <[email protected]>
3637

3738
Portions of this software are derived from third-party works licensed under
3839
the following terms:
@@ -58,6 +59,6 @@ the following terms:
5859
The 3-Clause BSD License (https://opensource.org/licenses/BSD-3-Clause)
5960

6061
* Arm Optimized Routines: https://github.com/ARM-software/optimized-routines
61-
62+
6263
Copyright (c) Arm Limited
6364
The MIT License (https://opensource.org/licenses/MIT)

src/definitions.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,6 @@ export class TSDBuilder extends ExportsWalker {
604604
build(): string {
605605
var sb = this.sb;
606606
var isWasm64 = this.program.options.isWasm64;
607-
sb.push("declare module ASModule {\n");
608607
sb.push(" type i8 = number;\n");
609608
sb.push(" type i16 = number;\n");
610609
sb.push(" type i32 = number;\n");
@@ -629,8 +628,6 @@ export class TSDBuilder extends ExportsWalker {
629628
++this.indentLevel;
630629
this.walk();
631630
--this.indentLevel;
632-
sb.push("}\n");
633-
sb.push("export default ASModule;\n");
634631
return this.sb.join("");
635632
}
636633
}

0 commit comments

Comments
 (0)