All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.extendj.ast.CaseLabel Maven / Gradle / Ivy

There is a newer version: 8.1.2
Show newest version
package org.extendj.ast;

import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.ArrayList;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.*;
import java.util.zip.*;
import java.io.*;
import org.jastadd.util.PrettyPrintable;
import org.jastadd.util.PrettyPrinter;
import org.jastadd.util.*;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.io.IOException;
import java.util.Set;
import beaver.*;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentSkipListMap;
import java.io.BufferedInputStream;
import java.io.DataInputStream;
/**
 * @ast class
 * @aspect CaseLabels
 * @declaredat /home/jesper/git/extendj/java4/backend/CaseLabels.jadd:36
 */
public class CaseLabel extends java.lang.Object {
  
    public final int value;

  
    public final int label;

  

    public CaseLabel(int value, int label) {
      this.value = value;
      this.label = label;
    }

  

    public CaseLabel(ConstCase ca) {
      this(ca.getValue().constant().intValue(), ca.label());
    }

  

    @Override
    public String toString() {
      return Integer.toString(value);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy