Minor changes and fixes to add-new-language script

This commit is contained in:
Nilay Majorwar
2022-02-18 18:04:32 +05:30
parent 4fc94fd9ab
commit 5b5600f329
3 changed files with 6 additions and 8 deletions

View File

@@ -17,6 +17,6 @@ export default class XYZLanguageEngine implements LanguageEngine<RS> {
executeStep(): StepExecutionResult<RS> {
// TODO: Unimplemented
return { rendererState: { value: 0 }, nextStepLocation: { line: 0 } };
return { rendererState: { value: 0 }, nextStepLocation: { startLine: 0 } };
}
}