public class com.oracle.truffle.regex.tregex.util.DebugUtil$Timer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.regex.tregex.util.DebugUtil$Timer
  super_class: java.lang.Object
{
  private long startTime;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.regex.tregex.util.DebugUtil$Timer this
         0: .line 140
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 142
            aload 0 /* this */
            lconst_0
            putfield com.oracle.truffle.regex.tregex.util.DebugUtil$Timer.startTime:J
         2: .line 140
            return
        end local 0 // com.oracle.truffle.regex.tregex.util.DebugUtil$Timer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/regex/tregex/util/DebugUtil$Timer;

  public void start();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.regex.tregex.util.DebugUtil$Timer this
         0: .line 145
            aload 0 /* this */
            invokestatic java.lang.System.nanoTime:()J
            putfield com.oracle.truffle.regex.tregex.util.DebugUtil$Timer.startTime:J
         1: .line 146
            return
        end local 0 // com.oracle.truffle.regex.tregex.util.DebugUtil$Timer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/regex/tregex/util/DebugUtil$Timer;

  public long getElapsed();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.regex.tregex.util.DebugUtil$Timer this
         0: .line 149
            invokestatic java.lang.System.nanoTime:()J
            aload 0 /* this */
            getfield com.oracle.truffle.regex.tregex.util.DebugUtil$Timer.startTime:J
            lsub
            lreturn
        end local 0 // com.oracle.truffle.regex.tregex.util.DebugUtil$Timer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/regex/tregex/util/DebugUtil$Timer;

  public java.lang.String elapsedToString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.regex.tregex.util.DebugUtil$Timer this
         0: .line 153
            aload 0 /* this */
            invokevirtual com.oracle.truffle.regex.tregex.util.DebugUtil$Timer.getElapsed:()J
            invokestatic com.oracle.truffle.regex.tregex.util.DebugUtil$Timer.elapsedToString:(J)Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.regex.tregex.util.DebugUtil$Timer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/regex/tregex/util/DebugUtil$Timer;

  public static java.lang.String elapsedToString(long);
    descriptor: (J)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=8, locals=2, args_size=1
        start local 0 // long elapsed
         0: .line 157
            ldc "%fms"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            lload 0 /* elapsed */
            l2d
            ldc 1000000.0
            ddiv
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // long elapsed
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  elapsed  J
    MethodParameters:
         Name  Flags
      elapsed  
}
SourceFile: "DebugUtil.java"
NestHost: com.oracle.truffle.regex.tregex.util.DebugUtil
InnerClasses:
  public Timer = com.oracle.truffle.regex.tregex.util.DebugUtil$Timer of com.oracle.truffle.regex.tregex.util.DebugUtil