/// <summary> /// Loads the standard library collection inside Jist, and binds all /// the functions in it to the running javascript engine. /// </summary> protected void LoadLibraries() { LoadLibrary((stdLib = new stdlib.std(this))); LoadLibrary((stdTshock = new stdlib.tshock(this))); LoadLibrary((stdTask = new stdlib.stdtask(this))); LoadLibrary((stdHook = new stdlib.stdhook(this))); }