Lines Matching defs:range
5 #include "src/ast/source-range-ast-visitor.h"
55 AstNodeSourceRanges* range = source_range_map_->Find(node);
57 if (range == nullptr) return true;
58 if (!range->HasRange(SourceRangeKind::kContinuation)) return true;
61 // outermost range may survive.
63 SourceRange continuation = range->GetRange(SourceRangeKind::kContinuation);
66 range->RemoveContinuationRange();
80 // For ThrowStatement, source range is tied to Throw expression not
119 // remove the continuation range of the last statement, such that the
120 // range of the enclosing function body is used.