PageRenderTime 65ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/jEdit/tags/jedit-4-0-pre5/bsh/commands/eval.bsh

#
Unknown | 8 lines | 6 code | 2 blank | 0 comment | 0 complexity | b4f5c93fcde06e6e64cf5b9a849d81ac MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. bsh.help.eval = "usage: eval( String expression )";
  2. /**
  3. */
  4. eval( String expression ) {
  5. return this.interpreter.eval( expression, this.caller.namespace );
  6. }