Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions packages/@glimmer/runtime/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/**
* @deprecated use RichIteratorResult<Tick, Return> or TemplateIterator instead
*/
import './lib/bootstrap';

import type { RichIteratorResult } from '@glimmer/interfaces';

export { clear, ConcreteBounds, CursorImpl } from './lib/bounds';
Expand Down
5 changes: 5 additions & 0 deletions packages/@glimmer/runtime/lib/vm/low-level.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ import { $fp, $pc, $ra, $sp } from '@glimmer/vm/lib/registers';
import type { DebugState } from '../opcodes';
import type { VM } from './append';

// Loading the VM is what creates the demand for opcode handlers — its
// `evaluateSyscall` calls `APPEND_OPCODES.evaluate(...)`. Pull bootstrap in
// here (rather than at the package barrel) so consumers using deep imports
// still get every opcode handler registered before the VM runs.
import '../bootstrap';
import { APPEND_OPCODES } from '../opcodes';

export type LowLevelRegisters = [$pc: number, $ra: number, $sp: number, $fp: number];
Expand Down
Loading