stuff
This commit is contained in:
parent
bc92231240
commit
b8225c639e
11904 changed files with 1472749 additions and 133 deletions
36
node_modules/speech-rule-engine/mjs/walker/dummy_walker.js
generated
vendored
Normal file
36
node_modules/speech-rule-engine/mjs/walker/dummy_walker.js
generated
vendored
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
import { AbstractWalker } from './abstract_walker.js';
|
||||
export class DummyWalker extends AbstractWalker {
|
||||
up() {
|
||||
return null;
|
||||
}
|
||||
down() {
|
||||
return null;
|
||||
}
|
||||
left() {
|
||||
return null;
|
||||
}
|
||||
right() {
|
||||
return null;
|
||||
}
|
||||
repeat() {
|
||||
return null;
|
||||
}
|
||||
depth() {
|
||||
return null;
|
||||
}
|
||||
home() {
|
||||
return null;
|
||||
}
|
||||
getDepth() {
|
||||
return 0;
|
||||
}
|
||||
initLevels() {
|
||||
return null;
|
||||
}
|
||||
combineContentChildren(_type, _role, _content, _children) {
|
||||
return [];
|
||||
}
|
||||
findFocusOnLevel(_id) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue