Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipse-dev] Integration build compile error in org.eclipse.jdt.debug

This isn't your fault OIiver, you are not supposed to check dependencies on
internal code. This is the deal for non-API code.
Foreseeing these is only a courtesy, and is quite time consuming... The
rule is simple: don't use internal code.



                                                                                                                                             
                      "Olivier Thomann"                                                                                                      
                      <Olivier_Thomann@o        To:       eclipse-dev@xxxxxxxxxxx                                                            
                      ti.com>                   cc:                                                                                          
                      Sent by:                  Subject:  Re: [eclipse-dev] Integration build compile error in org.eclipse.jdt.debug         
                      eclipse-dev-admin@                                                                                                     
                      eclipse.org                                                                                                            
                                                                                                                                             
                                                                                                                                             
                      10/29/2002 03:44                                                                                                       
                      PM                                                                                                                     
                      Please respond to                                                                                                      
                      eclipse-dev                                                                                                            
                                                                                                                                             
                                                                                                                                             





This is my fault. I didn't check that this class (internal class) was used
outside of JDT/Core when I moved it to API. See bug
http://bugs.eclipse.org/bugs/show_bug.cgi?id=22358.

The fix is simple:

Replace:
import org.eclipse.jdt.internal.compiler.util.CharOperation;

with:
import org.eclipse.jdt.core.compiler.CharOperation;

Olivier




                      "Dean Roberts"

                      <Dean_Roberts@oti.         To:
eclipse-dev@xxxxxxxxxxx

                      com>                       cc:

                      Sent by:                   Subject: [eclipse-dev]
Integration build compile error in org.eclipse.jdt.debug
                      eclipse-dev-admin@

                      eclipse.org



                      10/29/02 09:30 AM

                      Please respond to

                      eclipse-dev







There where compile erors in the org.eclipse.jdt.debug plug-in

Here is the compile log.

Please let  us know when the problems are fixed so we can try another
rebuild.

...Dean...

----------
1. WARNING in
/builds/integration/src/plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RuntimeSignature.java


(at line 3)
        import org.eclipse.jdt.internal.compiler.util.CharOperation;
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The import org.eclipse.jdt.internal.compiler.util.CharOperation cannot be
resolved
----------
----------
2. ERROR in
/builds/integration/src/plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RuntimeSignature.java


(at line 103)
        CharOperation.indexOf(C_SEMICOLON, signature, index);
        ^^^^^^^^^^^^^
CharOperation cannot be resolved
----------
3. ERROR in
/builds/integration/src/plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RuntimeSignature.java


(at line 139)
        CharOperation.indexOf(C_PARAM_START, methodSignature);
        ^^^^^^^^^^^^^
CharOperation cannot be resolved
----------
4. ERROR in
/builds/integration/src/plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RuntimeSignature.java


(at line 186)
        CharOperation.indexOf(
        ^^^^^^^^^^^^^
CharOperation cannot be resolved
----------
5. ERROR in
/builds/integration/src/plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RuntimeSignature.java


(at line 197)
        CharOperation.lastIndexOf(
        ^^^^^^^^^^^^^
CharOperation cannot be resolved
----------
6. ERROR in
/builds/integration/src/plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RuntimeSignature.java


(at line 382)
        CharOperation.indexOf(C_SEMICOLON, signature, sigPos);
        ^^^^^^^^^^^^^
CharOperation cannot be resolved
----------
7. ERROR in
/builds/integration/src/plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RuntimeSignature.java


(at line 390)
        CharOperation.lastIndexOf(
        ^^^^^^^^^^^^^
CharOperation cannot be resolved
----------
Compiled 53461 lines in 7872 ms (6791.2 lines/s)
7 problems (6 errors, 1 warning)
352 .class files generated



_______________________________________________
eclipse-dev mailing list
eclipse-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/eclipse-dev






Back to the top