Home
last modified time | relevance | path

Searched refs:maybe_table (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dcode-inl.h1261 Object maybe_table = source_position_table(kAcquireLoad); in HasSourcePositionTable() local
1262 return !(maybe_table.IsUndefined() || DidSourcePositionGenerationFail()); in HasSourcePositionTable()
1276 Object maybe_table = source_position_table(kAcquireLoad); in SourcePositionTable() local
1277 if (maybe_table.IsByteArray()) return ByteArray::cast(maybe_table); in SourcePositionTable()
1279 DCHECK(maybe_table.IsUndefined(roots) || maybe_table.IsException(roots)); in SourcePositionTable()
Dcode.cc238 Object maybe_table = SourcePositionTableInternal(); in SourcePosition() local
239 if (maybe_table.IsException()) return kNoSourcePosition; in SourcePosition()
241 ByteArray source_position_table = ByteArray::cast(maybe_table); in SourcePosition()