Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4522734

REGRESSION:Comments make the compiler to raise ArrayIndexOutOfBoundsException

XMLWordPrintable

    • rc1
    • x86
    • windows_nt
    • Verified



      Name: rmT116609 Date: 11/04/2001


      java version "1.4.0-beta2"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta2-b77)
      Java HotSpot(TM) Client VM (build 1.4.0-beta2-b77, mixed mode)

      -------------------------------------- regexpCommand.java--------------------------------------------------------
      package com.ge.appl.log;

      import java.util.*;

      /**
       * regexp command, an instance of a BaseCommand
       *
       * private static void check(REMatch m, String expect, int x) {
       * <br>&nbsp;&nbsp;&nbsp; if ((m == null) || !m.toString().equals(expect))
       * System.out.print("Failed");
       * <br>&nbsp;&nbsp;&nbsp; else System.out.print("Passed");
       * <br>&nbsp;&nbsp;&nbsp; System.out.println(" test #"+x);
       * <br>&nbsp; }
       * &nbsp;&nbsp; e = new RE("(.*)z");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("xxz"),"xxz",1);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE(".*z");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("xxz"),"xxz",2);
       * <br>&nbsp;
       * <br>&nbsp;&nbsp;&nbsp; e = new RE("(x|xy)z");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("xz"),"xz",3);
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("xyz"),"xyz",4);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE("(x)+z");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("xxz"),"xxz",5);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE("abc");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("xyzabcdef"),"abc",6);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE("^start.*end$");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("start here and go to the end"),"start
       * here and go to the end",7);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE("(x|xy)+z");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("xxyz"),"xxyz",8);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE("type=([^ \t]+)[ \t]+exts=([^ \t\n\r]+)");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("type=text/html ;
      exts=htm,html"),"type=text/html&nbsp;
       * exts=htm,html",9);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE("(x)\\1");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("zxxz"),"xx", 10);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE("(x*)(y)\\2\\1");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("xxxyyxx"),"xxyyxx",11);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE("[-go]+");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("go-go"),"go-go",12);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE("[\\w-]+");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("go-go"),"go-go",13);
       * <p>&nbsp;&nbsp;&nbsp; e = new RE("^start.*?end");
       * <br>&nbsp;&nbsp;&nbsp; check(e.getMatch("start here and end in the middle,
       * not the very end"),"start here and end",14);
       * <br>&nbsp;
       * <br>&nbsp;&nbsp;&nbsp; e = new RE("\\d\\s\\w\\n\\r");
       * <br>
       *
       *
       *
       * @version %I%, %G%
       */
      public class regexpCommand extends BaseCommand
      {


      }

      /*--- formatted by Jindent 2.1, (www.c-lab.de/~jindent) ---*/


      See these lines in the end of the comments:
       * <br>&nbsp;&nbsp;&nbsp; e = new RE("\\d\\s\\w\\n\\r");
       * <br>
       
      If u remove <br> from
       
      * <br>&nbsp;&nbsp;&nbsp; e = new RE("\\d\\s\\w\\n\\r");

      the code works

      else u get the error like as below:

      compile:
          [javac] Compiling 8 source files to D:\codes\java\MockObjects\build
          [javac] An exception has occurred in the compiler (1.4.0-beta2). Please
      file a bug at the Java Developer Connection (http://java.sun.com/cgi-
      bin/bugreport.cgi) after checking the Bug Parade for d
      uplicates. Include your program and the following diagnostic in your report.
      Thank you.
          [javac] java.lang.ArrayIndexOutOfBoundsException
          [javac] at com.sun.tools.javac.v8.parser.Scanner.scanDocCommentChar
      (Scanner.java:280)
          [javac] at com.sun.tools.javac.v8.parser.Scanner.scanDocComment
      (Scanner.java:937)
          [javac] at com.sun.tools.javac.v8.parser.Scanner.nextToken
      (Scanner.java:1235)
          [javac] at com.sun.tools.javac.v8.parser.Parser.accept(Parser.java:212)
          [javac] at com.sun.tools.javac.v8.parser.Parser.importDeclaration
      (Parser.java:1812)
          [javac] at com.sun.tools.javac.v8.parser.Parser.compilationUnit
      (Parser.java:1782)
          [javac] at com.sun.tools.javac.v8.JavaCompiler.parse
      (JavaCompiler.java:261)
          [javac] at com.sun.tools.javac.v8.JavaCompiler.parse
      (JavaCompiler.java:285)
          [javac] at com.sun.tools.javac.v8.JavaCompiler.compile
      (JavaCompiler.java:368)
          [javac] at com.sun.tools.javac.v8.Main.compile(Main.java:506)
          [javac] at com.sun.tools.javac.Main.compile(Main.java:32)
          [javac] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
          [javac] at sun.reflect.NativeMethodAccessorImpl.invoke
      (NativeMethodAccessorImpl.java:42)
          [javac] at sun.reflect.DelegatingMethodAccessorImpl.invoke
      (DelegatingMethodAccessorImpl.java:28)
          [javac] at java.lang.reflect.Method.invoke(Method.java:313)
          [javac] at org.apache.tools.ant.taskdefs.compilers.Javac13.execute
      (Javac13.java:99)
          [javac] at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:461)
          [javac] at org.apache.tools.ant.Target.execute(Target.java:153)
          [javac] at org.apache.tools.ant.Project.runTarget(Project.java:898)
          [javac] at org.apache.tools.ant.Project.executeTarget(Project.java:536)
          [javac] at org.apache.tools.ant.Project.executeTargets(Project.java:510)
          [javac] at org.apache.tools.ant.Main.runBuild(Main.java:421)
          [javac] at org.apache.tools.ant.Main.main(Main.java:149)


      The problem is also reproducible on Windows 2000(SP 2), Solaris 2.8, Linux, Redhat 6.2
      using JDK1.4.0-beta3.

      C:\>javac regexpCommand.java
      An exception has occurred in the compiler (1.4.0-beta3). Please file a bug at th
      e Java Developer Connection (http://java.sun.com/cgi-bin/bugreport.cgi) after c
      hecking the Bug Parade for duplicates. Include your program and the following di
      agnostic in your report. Thank you.
      java.lang.ArrayIndexOutOfBoundsException
              at com.sun.tools.javac.v8.parser.Scanner.scanDocCommentChar(Scanner.java
      :285)
              at com.sun.tools.javac.v8.parser.Scanner.scanDocComment(Scanner.java:942
      )
              at com.sun.tools.javac.v8.parser.Scanner.nextToken(Scanner.java:1240)
              at com.sun.tools.javac.v8.parser.Parser.accept(Parser.java:212)
              at com.sun.tools.javac.v8.parser.Parser.importDeclaration(Parser.java:18
      12)
              at com.sun.tools.javac.v8.parser.Parser.compilationUnit(Parser.java:1782
      )
              at com.sun.tools.javac.v8.JavaCompiler.parse(JavaCompiler.java:267)
              at com.sun.tools.javac.v8.JavaCompiler.parse(JavaCompiler.java:291)
              at com.sun.tools.javac.v8.JavaCompiler.compile(JavaCompiler.java:374)
              at com.sun.tools.javac.v8.Main.compile(Main.java:526)
              at com.sun.tools.javac.Main.compile(Main.java:32)
              at com.sun.tools.javac.Main.main(Main.java:23)

      The code works fine with JDK1.3.1_01.

      (Review ID: 134960)
      ======================================================================

      verified on sol 8, sol IA 8, RH 7.1 and win 2000.

      ###@###.### 2001-11-23

            gafter Neal Gafter (Inactive)
            rmandalasunw Ranjith Mandala (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: