Skip to content

Commit 3b157e4

Browse files
committed
rm stray function
1 parent 360d8a8 commit 3b157e4

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/Import.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export async function buildImports(spec: Spec, importNode: EmuImportElement, roo
4747
const importedImports = [
4848
...(importedNode as HTMLElement).querySelectorAll('emu-import'),
4949
// we have to do this because querySelectorAll can't return its `this`
50-
...((importedNode as HTMLElement).tagName === 'EMU-IMPORT' ? [importedNode] : [])
50+
...((importedNode as HTMLElement).tagName === 'EMU-IMPORT' ? [importedNode] : []),
5151
];
5252
for (const childImport of importedImports) {
5353
await buildImports(spec, childImport as EmuImportElement, relativeRoot);

src/Spec.ts

-4
Original file line numberDiff line numberDiff line change
@@ -273,10 +273,6 @@ function wrapWarn(source: string, spec: Spec, warn: (err: EcmarkupError) => void
273273
};
274274
}
275275

276-
function isEmuImportElement(node: Node): node is EmuImportElement {
277-
return node.nodeType === 1 && node.nodeName === 'EMU-IMPORT';
278-
}
279-
280276
export type WorklistItem = { aoid: string | null; effects: string[] };
281277
export function maybeAddClauseToEffectWorklist(
282278
effectName: string,

0 commit comments

Comments
 (0)