- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据Parser API您可以调用 Reflect.parse()
来获取 AST。不幸的是,当尝试在 C++ 中评估脚本时,它给了我一个错误,提示 ReferenceError: Reflect is not defined
:
const char *script = "var r = Reflect.parse(\"obj.foo + 42\");";
bool ok = JS_EvaluateScript(cx, global, script, strlen(script), filename, lineno, rval.address());
其实,我想解析一些简单的JS脚本并在C++中获取AST,我不喜欢绕道而行并在JS本身中进行分析的方式。你有什么建议吗?恕我直言,文档不是很好。
我尝试使用 JS_CompileScript()
,但似乎 1) 使用已编译的库时,JSScript
类的成员不可见 2) 没有信息关于树的事(?)。
我很想使用非常旧的 1.6 版本,因为有一个非常好的 parsing tutorial在那里。你对此有何看法?
另一种方法是不编译 SpiderMonkey 并直接使用 Parser 类。
任何有关最佳方式(在您看来)的提示/建议都将受到高度赞赏。谢谢:)
最佳答案
Actually, I want to parse some simple JS Scripts and get the AST within C++, I don't like the way doing a detour and having it analyzed in JS itself. Do you have any suggestions?
如果修补 Monkey 是(过去)您的一个选择,我有一个可行的方法。我正在使用 SpiderMonkey 45 执行此操作,但 Reflect API 已存在于 24 中。
在ReflectParse.cpp:3593
, 有函数
static bool reflect_parse(JSContext* cx, uint32_t argc, Value* vp)
使它成为非静态的并在 jsapi.h
中声明它像这样:
extern JS_PUBLIC_API(bool) reflect_parse(JSContext* cx, uint32_t argc, JS::Value* vp);
实际上,这是从 JS_InitReflectParse
复制/粘贴的所述文件中的声明。现在您可以调用 Reflect.parse()
的 C 实现从外面。
您还需要一堆私有(private) header ,我目前包括这些:builtin/ModuleObject.h
, jscntxt.h
, jscompartment.h
, jsobj.h
, frontend/ParseNode.h
Value* vp
那reflect_parse
预计第二个参数是 JS::AutoValueArray<3>
构造如下:
JSValue
到返回的对象。 CallArgs::rval()
从那里取回它。JS::AutoValueArray<n>
包含 Reflect.parse
的参数.所以对于像 Reflect.parse(code)
这样的简单调用,参数可以如下所示:
JS::RootedString codeJsStr(context); // Empty string for now
JS::AutoValueArray<1> parseParams(context);
parseParams[0].setString(codeJsStr);
JS::AutoValueArray<3> vp(m_context);
vp[2].set(*parseParams.begin());
reflect_parse(m_context, parseParams.length(), vp.begin());
然后可以在 CallArgs
的帮助下处理返回值就像它被记录为从 C 调用 js 函数一样。
关于javascript - SpiderMonkey 24 : How to call Reflect. 解析()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34480530/
我是一名优秀的程序员,十分优秀!