[wip] Add Rockstar
This commit is contained in:
21
languages/rockstar/runtime/index.ts
Normal file
21
languages/rockstar/runtime/index.ts
Normal 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 } };
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user