home *** CD-ROM | disk | FTP | other *** search
- package com.netscape.javascript;
-
- class RENode {
- public static final int ANCHORED = 1;
- public static final int SINGLE = 2;
- public static final int NONEMPTY = 4;
- public static final int ISNEXT = 8;
- public static final int GOODNEXT = 16;
- public static final int ISJOIN = 32;
- public static final int REALLOK = 64;
- // $FF: renamed from: op byte
- byte field_0;
- byte flags;
- short offset;
- RENode next;
- Object kid;
- int kid2;
- int num;
- char chr;
- short min;
- short max;
- short kidlen;
- short bmsize;
- // $FF: renamed from: s char[]
- char[] field_1;
-
- RENode(CompilerState var1, byte var2, Object var3) {
- this.field_0 = var2;
- this.kid = var3;
- }
-
- void copy(RENode var1) {
- this.field_0 = var1.field_0;
- this.flags = var1.flags;
- this.offset = var1.offset;
- this.next = var1.next;
- this.kid = var1.kid;
- this.kid2 = var1.kid2;
- this.num = var1.num;
- this.chr = var1.chr;
- this.min = var1.min;
- this.max = var1.max;
- this.field_1 = var1.field_1;
- }
- }
-