sysCall.js 391 B

123456789101112
  1. /**
  2. * This class represents all the language defined functions.
  3. * The language processor uses the id provided here to properly execute the desired function.
  4. * The function is actually implemented inside the language processor.
  5. * All the functions can be found at: js/processor/definedFunctions.js
  6. */
  7. export class SysCall {
  8. constructor (langFunc) {
  9. this.langFunc = langFunc;
  10. }
  11. }