2017-01-22 23:15:53 +00:00
|
|
|
import '../token.dart';
|
|
|
|
import 'directive.dart';
|
|
|
|
import 'node.dart';
|
2017-07-05 22:44:13 +00:00
|
|
|
import 'package:source_span/source_span.dart';
|
2017-01-22 23:15:53 +00:00
|
|
|
import 'selection_set.dart';
|
|
|
|
import 'type_condition.dart';
|
|
|
|
|
|
|
|
class InlineFragmentContext extends Node {
|
|
|
|
final Token ELLIPSIS, ON;
|
|
|
|
final TypeConditionContext typeCondition;
|
|
|
|
final List<DirectiveContext> directives = [];
|
|
|
|
final SelectionSetContext selectionSet;
|
|
|
|
|
|
|
|
InlineFragmentContext(
|
|
|
|
this.ELLIPSIS, this.ON, this.typeCondition, this.selectionSet);
|
|
|
|
|
|
|
|
@override
|
2017-07-05 22:44:13 +00:00
|
|
|
FileSpan get span {
|
|
|
|
var out = ELLIPSIS.span.expand(ON.span).expand(typeCondition.span);
|
|
|
|
out = directives.fold<FileSpan>(out, (o, d) => o.expand(d.span));
|
|
|
|
return out.expand(selectionSet.span);
|
|
|
|
}
|
2017-01-22 23:15:53 +00:00
|
|
|
}
|