public final class com.google.gson.JsonStreamParser implements java.util.Iterator<com.google.gson.JsonElement>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.gson.JsonStreamParser
  super_class: java.lang.Object
{
  private final com.google.gson.stream.JsonReader parser;
    descriptor: Lcom/google/gson/stream/JsonReader;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Object lock;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.gson.JsonStreamParser this
        start local 1 // java.lang.String json
         0: .line 61
            aload 0 /* this */
            new java.io.StringReader
            dup
            aload 1 /* json */
            invokespecial java.io.StringReader.<init>:(Ljava/lang/String;)V
            invokespecial com.google.gson.JsonStreamParser.<init>:(Ljava/io/Reader;)V
         1: .line 62
            return
        end local 1 // java.lang.String json
        end local 0 // com.google.gson.JsonStreamParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/gson/JsonStreamParser;
            0    2     1  json  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      json  

  public void <init>(java.io.Reader);
    descriptor: (Ljava/io/Reader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.gson.JsonStreamParser this
        start local 1 // java.io.Reader reader
         0: .line 68
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 69
            aload 0 /* this */
            new com.google.gson.stream.JsonReader
            dup
            aload 1 /* reader */
            invokespecial com.google.gson.stream.JsonReader.<init>:(Ljava/io/Reader;)V
            putfield com.google.gson.JsonStreamParser.parser:Lcom/google/gson/stream/JsonReader;
         2: .line 70
            aload 0 /* this */
            getfield com.google.gson.JsonStreamParser.parser:Lcom/google/gson/stream/JsonReader;
            iconst_1
            invokevirtual com.google.gson.stream.JsonReader.setLenient:(Z)V
         3: .line 71
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield com.google.gson.JsonStreamParser.lock:Ljava/lang/Object;
         4: .line 72
            return
        end local 1 // java.io.Reader reader
        end local 0 // com.google.gson.JsonStreamParser this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/google/gson/JsonStreamParser;
            0    5     1  reader  Ljava/io/Reader;
    MethodParameters:
        Name  Flags
      reader  

  public com.google.gson.JsonElement next();
    descriptor: ()Lcom/google/gson/JsonElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.google.gson.JsonStreamParser this
         0: .line 82
            aload 0 /* this */
            invokevirtual com.google.gson.JsonStreamParser.hasNext:()Z
            ifne 2
         1: .line 83
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            athrow
         2: .line 87
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.gson.JsonStreamParser.parser:Lcom/google/gson/stream/JsonReader;
            invokestatic com.google.gson.internal.Streams.parse:(Lcom/google/gson/stream/JsonReader;)Lcom/google/gson/JsonElement;
         3: areturn
         4: .line 88
      StackMap locals:
      StackMap stack: java.lang.StackOverflowError
            astore 1 /* e */
        start local 1 // java.lang.StackOverflowError e
         5: .line 89
            new com.google.gson.JsonParseException
            dup
            ldc "Failed parsing JSON source to Json"
            aload 1 /* e */
            invokespecial com.google.gson.JsonParseException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.StackOverflowError e
         6: .line 90
      StackMap locals:
      StackMap stack: java.lang.OutOfMemoryError
            astore 1 /* e */
        start local 1 // java.lang.OutOfMemoryError e
         7: .line 91
            new com.google.gson.JsonParseException
            dup
            ldc "Failed parsing JSON source to Json"
            aload 1 /* e */
            invokespecial com.google.gson.JsonParseException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.OutOfMemoryError e
         8: .line 92
      StackMap locals:
      StackMap stack: com.google.gson.JsonParseException
            astore 1 /* e */
        start local 1 // com.google.gson.JsonParseException e
         9: .line 93
            aload 1 /* e */
            invokevirtual com.google.gson.JsonParseException.getCause:()Ljava/lang/Throwable;
            instanceof java.io.EOFException
            ifeq 10
            new java.util.NoSuchElementException
            dup
            invokespecial java.util.NoSuchElementException.<init>:()V
            goto 11
      StackMap locals: com.google.gson.JsonParseException
      StackMap stack:
        10: aload 1 /* e */
      StackMap locals:
      StackMap stack: java.lang.RuntimeException
        11: athrow
        end local 1 // com.google.gson.JsonParseException e
        end local 0 // com.google.gson.JsonStreamParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/google/gson/JsonStreamParser;
            5    6     1     e  Ljava/lang/StackOverflowError;
            7    8     1     e  Ljava/lang/OutOfMemoryError;
            9   12     1     e  Lcom/google/gson/JsonParseException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.StackOverflowError
           2     3       6  Class java.lang.OutOfMemoryError
           2     3       8  Class com.google.gson.JsonParseException
    Exceptions:
      throws com.google.gson.JsonParseException

  public boolean hasNext();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.google.gson.JsonStreamParser this
         0: .line 103
            aload 0 /* this */
            getfield com.google.gson.JsonStreamParser.lock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 105
            aload 0 /* this */
            getfield com.google.gson.JsonStreamParser.parser:Lcom/google/gson/stream/JsonReader;
            invokevirtual com.google.gson.stream.JsonReader.peek:()Lcom/google/gson/stream/JsonToken;
            getstatic com.google.gson.stream.JsonToken.END_DOCUMENT:Lcom/google/gson/stream/JsonToken;
            if_acmpeq 2
            iconst_1
            goto 3
      StackMap locals: java.lang.Object
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: aload 1
            monitorexit
         4: ireturn
         5: .line 106
      StackMap locals:
      StackMap stack: com.google.gson.stream.MalformedJsonException
            astore 2 /* e */
        start local 2 // com.google.gson.stream.MalformedJsonException e
         6: .line 107
            new com.google.gson.JsonSyntaxException
            dup
            aload 2 /* e */
            invokespecial com.google.gson.JsonSyntaxException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // com.google.gson.stream.MalformedJsonException e
         7: .line 108
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 2 /* e */
        start local 2 // java.io.IOException e
         8: .line 109
            new com.google.gson.JsonIOException
            dup
            aload 2 /* e */
            invokespecial com.google.gson.JsonIOException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException e
         9: .line 103
      StackMap locals:
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
        10: athrow
        end local 0 // com.google.gson.JsonStreamParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/google/gson/JsonStreamParser;
            6    7     2     e  Lcom/google/gson/stream/MalformedJsonException;
            8    9     2     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     3       5  Class com.google.gson.stream.MalformedJsonException
           1     3       7  Class java.io.IOException
           1     4       9  any
           5    10       9  any

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.gson.JsonStreamParser this
         0: .line 120
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // com.google.gson.JsonStreamParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/gson/JsonStreamParser;

  public java.lang.Object next();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.gson.JsonStreamParser.next:()Lcom/google/gson/JsonElement;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/util/Iterator<Lcom/google/gson/JsonElement;>;
SourceFile: "JsonStreamParser.java"