summaryrefslogtreecommitdiff
path: root/src/node_contextify.cc
Commit message (Expand)AuthorAgeFilesLines
* vm: fix crash when setting __proto__ on context's globalThisFeng Yu2023-05-151-1/+2
* bootstrap: initialize per-isolate properties of bindings separatelyJoyee Cheung2023-05-031-42/+43
* vm: properly handle defining props on any valueNicolas DUBIEN2023-03-181-3/+15
* Revert "vm: fix leak in vm.compileFunction when importModuleDynamically is used"Michaël Zasso2023-03-151-5/+12
* vm: fix leak in vm.compileFunction when importModuleDynamically is usedJoyee Cheung2023-03-011-12/+5
* lib,src: fix a few typos in commentsTobias Nießen2023-02-251-1/+1
* vm: properly support symbols on globalsNicolas DUBIEN2023-02-041-1/+3
* src: add snapshot support for embedder APIAnna Henningsen2023-02-031-3/+1
* vm: expose cachedDataRejected for vm.compileFunctionAnna Henningsen2023-01-251-49/+76
* src: rename internal module declaration as internal bindingslegendecas2022-11-291-3/+3
* src: track contexts in the Environment instead of AsyncHooksJoyee Cheung2022-11-071-2/+1
* src,lib: retrieve parsed source map url from v8legendecas2022-10-231-8/+20
* vm: make ContextifyContext a BaseObjectJoyee Cheung2022-10-041-84/+113
* src: introduce node::RealmChengzhong Wu2022-08-311-1/+1
* vm: avoid unnecessary property getter interceptor callsJoyee Cheung2022-08-241-7/+9
* vm: include vm context in the embedded snapshotJoyee Cheung2022-08-241-9/+24
* vm: make ContextifyContext template context-independentJoyee Cheung2022-08-241-102/+124
* src: use imported namespaces in `node_contextify.cc`Juan José2022-08-211-2/+2
* src: remove usage on ScriptCompiler::CompileFunctionInContextChengzhong Wu2022-08-161-13/+14
* src: remove usages of GetBackingStore in modulesKeyhan Vakil2022-08-031-4/+2
* src: split property helpers from node::Environmentlegendecas2022-08-021-15/+21
* lib,src: add source map support for global evallegendecas2022-07-111-1/+5
* src: merge RunInThisContext() with RunInContext()Daeyeon Jeong2022-07-111-48/+20
* src: replace TraceEventScope with sync eventslegendecas2022-05-161-23/+9
* src: always signal V8 for intercepted propertiesMichaël Zasso2022-05-061-9/+1
* src: return Maybe<bool> from InitializeContextRuntime()Darshan Sen2021-08-121-1/+3
* src: set PromiseHooks by EnvironmentBryan English2021-06-021-0/+5
* src: replace `auto`s in node_contextify.ccXadillaX2021-05-191-3/+4
* bootstrap: include vm and contextify binding into the snapshotJoyee Cheung2021-05-201-4/+35
* src: cache some context in localsXadillaX2021-04-191-13/+19
* src: use non-deprecated V8 module APIsMichaël Zasso2021-03-151-2/+4
* src: use non-deprecated V8 module and script APIsMichaël Zasso2021-02-251-20/+16
* src: reduce duplicated boilerplate with new env utility fnJames M Snell2021-01-031-11/+1
* src: use correct outer Context’s microtask queueAnna Henningsen2020-12-131-1/+3
* vm: add `SafeForTerminationScope`s for SIGINT interruptionsAnna Henningsen2020-12-061-0/+1
* src: move node_contextify to modern THROW_ERR_*James M Snell2020-10-101-1/+2
* vm: add run-after-evaluate microtask modeAnna Henningsen2020-06-261-7/+72
* src: remove unnecessary ToLocalChecked callDaniel Bevenius2020-06-221-2/+2
* vm: allow proxy callbacks to throwGus Caplan2020-06-111-6/+6
* src: remove unused using declarationsDaniel Bevenius2020-05-281-1/+0
* vm: fix vm.measureMemory() and introduce execution optionJoyee Cheung2020-04-301-25/+33
* src: use unique_ptr for CachedData in ContextifyScript::NewAnna Henningsen2020-04-301-2/+2
* src: migrate measureMemory to new v8 apigengjiawen2020-03-181-6/+9
* src: improve handling of internal field countingJames M Snell2020-03-021-5/+9
* vm: implement vm.measureMemory() for per-context memory measurementJoyee Cheung2020-02-261-0/+44
* vm: lazily initialize primordials for vm contextsJoyee Cheung2020-02-191-2/+5
* src: migrate off ArrayBuffer::GetContentsAnna Henningsen2019-11-121-4/+4
* src: remove unused using declarationsDaniel Bevenius2019-08-231-2/+0
* src: make `CompiledFnEntry` a `BaseObject`Anna Henningsen2019-07-221-2/+35
* vm: fix gc bug with modules and compiled functionsGus Caplan2019-07-191-26/+28