sysCall.js 373 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 (id) {
  9. this.id = id;
  10. }
  11. }