File tree Expand file tree Collapse file tree 4 files changed +14
-0
lines changed
Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 11package graphql .language ;
22
33
4+ import graphql .PublicApi ;
5+
46import java .util .ArrayList ;
57import java .util .List ;
68
9+ /*
10+ * This is provided to a DataFetcher, therefore it is a public API.
11+ * This might change in the future.
12+ */
13+ @ PublicApi
714public class Field extends AbstractNode implements Selection {
815
916 private String name ;
Original file line number Diff line number Diff line change 11package graphql .language ;
22
33
4+ import graphql .Internal ;
5+
46import java .util .ArrayList ;
57import java .util .List ;
68
9+ @ Internal
710public class OperationTypeDefinition extends AbstractNode {
811 private String name ;
912 private Type type ;
Original file line number Diff line number Diff line change 11package graphql .parser ;
22
33
4+ import graphql .Internal ;
45import graphql .ShouldNotHappenException ;
56import graphql .language .AbstractNode ;
67import graphql .language .Argument ;
5758import java .util .Deque ;
5859import java .util .List ;
5960
61+ @ Internal
6062public class GraphqlAntlrToLanguage extends GraphqlBaseVisitor <Void > {
6163
6264 private final CommonTokenStream tokens ;
Original file line number Diff line number Diff line change 11package graphql .parser ;
22
3+ import graphql .Internal ;
34import graphql .language .Document ;
45import graphql .parser .antlr .GraphqlLexer ;
56import graphql .parser .antlr .GraphqlParser ;
1213
1314import java .util .List ;
1415
16+ @ Internal
1517public class Parser {
1618
1719 public Document parseDocument (String input ) {
You can’t perform that action at this time.
0 commit comments