org.antlr.v4.codegen.model.SerializedATN Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antlr4 Show documentation
Show all versions of antlr4 Show documentation
The ANTLR 4 grammar compiler.
The newest version!
/*
* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
* Use of this file is governed by the BSD 3-clause license that
* can be found in the LICENSE.txt file in the project root.
*/
package org.antlr.v4.codegen.model;
import org.antlr.v4.codegen.OutputModelFactory;
import org.antlr.v4.codegen.Target;
import org.antlr.v4.runtime.atn.ATN;
import org.antlr.v4.runtime.atn.ATNSerializer;
import org.antlr.v4.runtime.misc.IntegerList;
/** Represents a serialized ATN that is just a list of signed integers; works for all targets
* except for java, which requires a 16-bit char encoding. See {@link SerializedJavaATN}.
*/
public class SerializedATN extends OutputModelObject {
public int[] serialized;
public SerializedATN(OutputModelFactory factory) {
super(factory);
}
public SerializedATN(OutputModelFactory factory, ATN atn) {
super(factory);
IntegerList data = ATNSerializer.getSerialized(atn);
serialized = data.toArray();
}
public Object getSerialized() { return serialized; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy