我想使用诸如 v8 或 rhino 之类的 JS 引擎来执行语法检查,而无需实际执行代码。是否可以使用命令行版本或相应的库?任何有用的文档?
问问题
845 次
1 回答
0
我在 v8 上取得了一些有限的成功:
/*
* main.cpp
*
* Created on: Aug 22, 2013
* Author: kallikanzarid
*/
#include <v8.h>
#include <iostream>
int main() {
using namespace std;
using namespace v8;
//
// See https://developers.google.com/v8/get_started
//
// Create a stack-allocated handle scope.
HandleScope handle_scope;
// Create a new context.
Handle<Context> context = Context::New();
// Here's how you could create a Persistent handle to the context, if needed.
Persistent<Context> persistent_context(context);
// Enter the created context for compiling and
// running the hello world script.
Context::Scope context_scope(context);
Local<String> source = String::New("function foo(x { console.log(x); }; foo('bar')");
Local<Script> script = Script::New(source);
persistent_context.Dispose();
return 0;
}
我希望你们能打败这个本质上是二进制语法检查器。如果没有更好的结果,我可能会尝试通过捕获异常并尝试使输出机器可读来自己改进它。
于 2013-08-22T09:31:20.883 回答