home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / jserv / com / netscape / javascript / RENode.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-09  |  1.0 KB  |  46 lines

  1. package com.netscape.javascript;
  2.  
  3. class RENode {
  4.    public static final int ANCHORED = 1;
  5.    public static final int SINGLE = 2;
  6.    public static final int NONEMPTY = 4;
  7.    public static final int ISNEXT = 8;
  8.    public static final int GOODNEXT = 16;
  9.    public static final int ISJOIN = 32;
  10.    public static final int REALLOK = 64;
  11.    // $FF: renamed from: op byte
  12.    byte field_0;
  13.    byte flags;
  14.    short offset;
  15.    RENode next;
  16.    Object kid;
  17.    int kid2;
  18.    int num;
  19.    char chr;
  20.    short min;
  21.    short max;
  22.    short kidlen;
  23.    short bmsize;
  24.    // $FF: renamed from: s char[]
  25.    char[] field_1;
  26.  
  27.    RENode(CompilerState var1, byte var2, Object var3) {
  28.       this.field_0 = var2;
  29.       this.kid = var3;
  30.    }
  31.  
  32.    void copy(RENode var1) {
  33.       this.field_0 = var1.field_0;
  34.       this.flags = var1.flags;
  35.       this.offset = var1.offset;
  36.       this.next = var1.next;
  37.       this.kid = var1.kid;
  38.       this.kid2 = var1.kid2;
  39.       this.num = var1.num;
  40.       this.chr = var1.chr;
  41.       this.min = var1.min;
  42.       this.max = var1.max;
  43.       this.field_1 = var1.field_1;
  44.    }
  45. }
  46.