mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
add static-eval
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
/// <reference path="static-eval.d.ts" />
|
||||
/// <reference path="../esprima/esprima.d.ts" />
|
||||
|
||||
import evaluate = require('static-eval');
|
||||
import parse = require('../esprima/esprima').parse;
|
||||
|
||||
var src = '[1,2,3+4*10+n,foo(3+5),obj[""+"x"].y]';
|
||||
var ast = parse(src).body[0].expression;
|
||||
|
||||
console.log(evaluate(ast, {
|
||||
n: 6,
|
||||
foo: function (x) { return x * 100 },
|
||||
obj: { x: { y: 555 } }
|
||||
}));
|
||||
Reference in New Issue
Block a user