Lines Matching defs:shared
30 #include "src/objects/shared-function-info.h"
95 Handle<SharedFunctionInfo> shared, bool with_key) {
104 if (!script.is_null() && !script->IsUndefined(isolate) && !shared.is_null()) {
115 start = shared->StartPosition();
116 end = shared->EndPosition();
118 int len = shared->EndPosition() - start;
134 int SourceIdAssigner::GetIdFor(Handle<SharedFunctionInfo> shared) {
136 if (printed_.at(i).is_identical_to(shared)) {
142 printed_.push_back(shared);
182 Handle<SharedFunctionInfo> shared = inlined[id].shared_info;
183 const int source_id = id_assigner.GetIdFor(shared);
184 JsonPrintFunctionSource(os, source_id, shared->DebugNameCStr(),
185 handle(Script::cast(shared->script()), isolate),
186 isolate, shared, true);