Beispiel #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;
"
                );
        }
Beispiel #2
0
 public override void Execute(params string[] args)
 {
     jish.ClearBufferedCommand();
 }
Beispiel #3
0
 public void Abort()
 {
     jish.ClearBufferedCommand();
 }