Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究 v8 源代码,但似乎无法找到所有基本构造函数(如 Array、Object 或 String)的定义位置。
有
InstallFunctions($Object.prototype, DONT_ENUM, $Array(
在v8natives.js和
var $Object = global.Object;
在runtime.js中,但从哪里来global.Object?
global.Object
它们来自引导程序。例如对象和数组。