scala.tools.nsc.backend.jvm.LabelNode1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-compiler Show documentation
Show all versions of scala-compiler Show documentation
Compiler for the Scala Programming Language
The newest version!
/*
* Scala (https://www.scala-lang.org)
*
* Copyright EPFL and Lightbend, Inc.
*
* Licensed under Apache License 2.0
* (http://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package scala.tools.nsc.backend.jvm;
import scala.tools.asm.Label;
import scala.tools.asm.tree.ClassNode;
import scala.tools.asm.tree.LabelNode;
/**
* A subclass of {@link LabelNode} to add user-definable flags.
*/
public class LabelNode1 extends LabelNode {
public LabelNode1() {
}
public LabelNode1(Label label) {
super(label);
}
public int flags;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy