Skip to content

Commit 3b2d41f

Browse files
committed
Nightly v0.9.2-nightly.20200228
1 parent 6d73f3c commit 3b2d41f

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

dist/asc.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/asc.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assemblyscript.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3528,7 +3528,7 @@ declare module "assemblyscript/src/program" {
35283528
/** Looks up the element with the specified name relative to this element, like in JS. */
35293529
abstract lookup(name: string): Element | null;
35303530
/** Adds an element as a member of this one. Reports and returns `false` if a duplicate. */
3531-
add(name: string, element: DeclaredElement): boolean;
3531+
add(name: string, element: DeclaredElement, localIdentifierIfImport?: IdentifierExpression | null): boolean;
35323532
/** Returns a string representation of this element. */
35333533
toString(): string;
35343534
}
@@ -3597,7 +3597,7 @@ declare module "assemblyscript/src/program" {
35973597
program: Program,
35983598
/** Source of this file. */
35993599
source: Source);
3600-
add(name: string, element: DeclaredElement, isImport?: boolean): boolean;
3600+
add(name: string, element: DeclaredElement, localIdentifierIfImport?: IdentifierExpression | null): boolean;
36013601
lookupInSelf(name: string): DeclaredElement | null;
36023602
lookup(name: string): Element | null;
36033603
/** Ensures that an element is an export of this file. */
@@ -3607,7 +3607,7 @@ declare module "assemblyscript/src/program" {
36073607
/** Looks up the export of the specified name. */
36083608
lookupExport(name: string): DeclaredElement | null;
36093609
/** Creates an imported namespace from this file. */
3610-
asImportedNamespace(name: string, parent: Element): Namespace;
3610+
asImportedNamespace(name: string, parent: Element, localIdentifier: IdentifierExpression): Namespace;
36113611
}
36123612
/** A type definition. */
36133613
export class TypeDefinition extends TypedElement {

dist/assemblyscript.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assemblyscript.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)