Skip to content

Commit

Permalink
fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
snosenzo committed Aug 30, 2023
1 parent d542abc commit b87c6d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/omgidl-parser/src/processIDL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import {
StructMemberIDLNode,
TypedefIDLNode,
} from "./IDLNodes";
import { UnionIDLNode } from "./IDLNodes/UnionIDLNode";
import { AnyIDLNode } from "./IDLNodes/interfaces";
import { AnyASTNode } from "./astTypes";
import { IDLMessageDefinition } from "./types";
import { UnionIDLNode } from "./IDLNodes/UnionIDLNode";

/** Initializes map of IDL nodes to their scoped namespaces */
export function buildMap(definitions: AnyASTNode[]): Map<string, AnyIDLNode> {
Expand Down

0 comments on commit b87c6d0

Please sign in to comment.