Searched refs:maybe_table (Results 1 – 2 of 2) sorted by relevance
1261 Object maybe_table = source_position_table(kAcquireLoad); in HasSourcePositionTable() local1262 return !(maybe_table.IsUndefined() || DidSourcePositionGenerationFail()); in HasSourcePositionTable()1276 Object maybe_table = source_position_table(kAcquireLoad); in SourcePositionTable() local1277 if (maybe_table.IsByteArray()) return ByteArray::cast(maybe_table); in SourcePositionTable()1279 DCHECK(maybe_table.IsUndefined(roots) || maybe_table.IsException(roots)); in SourcePositionTable()
238 Object maybe_table = SourcePositionTableInternal(); in SourcePosition() local239 if (maybe_table.IsException()) return kNoSourcePosition; in SourcePosition()241 ByteArray source_position_table = ByteArray::cast(maybe_table); in SourcePosition()