< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.graphio/src/org/graalvm/graphio/ProtocolImpl.java

Print this page

        

*** 38,52 **** private final GraphTypes types; private final GraphBlocks<Graph, Block, Node> blocks; private final GraphElements<ResolvedJavaMethod, ResolvedJavaField, Signature, NodeSourcePosition> elements; private final GraphLocations<ResolvedJavaMethod, NodeSourcePosition, Location> locations; ! ProtocolImpl(int major, int minor, GraphStructure<Graph, Node, NodeClass, Port> structure, GraphTypes enums, GraphBlocks<Graph, Block, Node> blocks, GraphElements<ResolvedJavaMethod, ResolvedJavaField, Signature, NodeSourcePosition> elements, GraphLocations<ResolvedJavaMethod, NodeSourcePosition, Location> locs, WritableByteChannel channel) throws IOException { ! super(channel, major, minor); this.structure = structure; this.types = enums; this.blocks = blocks; this.elements = elements; this.locations = locs; --- 38,52 ---- private final GraphTypes types; private final GraphBlocks<Graph, Block, Node> blocks; private final GraphElements<ResolvedJavaMethod, ResolvedJavaField, Signature, NodeSourcePosition> elements; private final GraphLocations<ResolvedJavaMethod, NodeSourcePosition, Location> locations; ! ProtocolImpl(int major, int minor, boolean embedded, GraphStructure<Graph, Node, NodeClass, Port> structure, GraphTypes enums, GraphBlocks<Graph, Block, Node> blocks, GraphElements<ResolvedJavaMethod, ResolvedJavaField, Signature, NodeSourcePosition> elements, GraphLocations<ResolvedJavaMethod, NodeSourcePosition, Location> locs, WritableByteChannel channel) throws IOException { ! super(channel, major, minor, embedded); this.structure = structure; this.types = enums; this.blocks = blocks; this.elements = elements; this.locations = locs;
< prev index next >