File tree Expand file tree Collapse file tree 4 files changed +8
-365
lines changed Expand file tree Collapse file tree 4 files changed +8
-365
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,6 @@ import {
174174import { IVariableMap } from './interfaces/i_variable_map.js' ;
175175import { IVariableModel , IVariableState } from './interfaces/i_variable_model.js' ;
176176import * as internalConstants from './internal_constants.js' ;
177- import { ASTNode } from './keyboard_nav/ast_node.js' ;
178177import { CursorOptions , LineCursor } from './keyboard_nav/line_cursor.js' ;
179178import { Marker } from './keyboard_nav/marker.js' ;
180179import type { LayerManager } from './layer_manager.js' ;
@@ -447,7 +446,6 @@ export * from './toast.js';
447446
448447// Re-export submodules that no longer declareLegacyNamespace.
449448export {
450- ASTNode ,
451449 Block ,
452450 BlockSvg ,
453451 BlocklyOptions ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -540,7 +540,7 @@ export class LineCursor extends Marker {
540540 for ( const node of nodes ) {
541541 if (
542542 this . validNode ( node ) &&
543- ! this . toASTNode ( node ) ?. getSourceBlock ( ) ?. disposed
543+ ! this . getSourceBlockFromNode ( node ) ?. disposed
544544 ) {
545545 this . setCurNode ( node ) ;
546546 return ;
You can’t perform that action at this time.
0 commit comments