[wip] Add Rockstar

This commit is contained in:
Nilay Majorwar
2022-02-02 21:09:00 +05:30
parent 69553b7087
commit 0befc7369a
12 changed files with 537 additions and 2 deletions

View File

@ -0,0 +1,21 @@
import { LanguageEngine, StepExecutionResult } from "../../types";
import { RS } from "../common/types";
export default class XYZLanguageEngine implements LanguageEngine<RS> {
resetState() {
// TODO: Unimplemented
}
validateCode(code: string) {
// TODO: Unimplemented
}
prepare(code: string, input: string) {
// TODO: Unimplemented
}
executeStep(): StepExecutionResult<RS> {
// TODO: Unimplemented
return { rendererState: { value: 0 }, nextStepLocation: { line: 0 } };
}
}