概要 V8 JavaScriptエンジンの組み込みと関数等の追加を試した。 V8の組み込みまずは標準入力からJavaScriptソースを読み込んで実行するケース。 https://developers.google.com/v8/get_startedに載っているものとほぼ同じで、ソースを標準入力から取得するように修正しただけ。このソースをベースに試していく。 #include <v8.h> #include <iostream> #include <string> using namespace v8; static void read_file(std::istream& ifs, std::string &content) { content = ""; std::string t; while (!ifs.eof()) { getline(std::cin, t); content