Esempio n. 1
0
        public override void Execute(params string[] args)
        {
            jish.ClearBufferedCommand();
            console.log("Clearing context...");
            jish.ExecuteCommand(
                @"
for (var i in this) {
  if (i === 'console' || i === 'global') continue;
  delete this[i];
}
null;
"
                );
        }
Esempio n. 2
0
 public override void Execute(params string[] args)
 {
     jish.ClearBufferedCommand();
 }
Esempio n. 3
0
 public void Abort()
 {
     jish.ClearBufferedCommand();
 }