~ubuntu-branches/ubuntu/utopic/eclipse-wtp/utopic-proposed

« back to all changes in this revision

Viewing changes to org.eclipse.wst.jsdt.core/src/org/eclipse/wst/jsdt/internal/compiler/Compiler.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2014-07-10 12:54:39 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140710125439-ixzeiqepu8m3e1z6
Tags: 3.6.0-1
* New upstream release.
* Refreshed d/patches/debian-custom-build.patch.
* Regenerate CSSTokenizer during build.
* Override codeless-jar warning in eclipse-wtp binary package.
* Override false positive source-is-missing lintian error in bundle
  org.eclipse.wst.jsdt.support.ie.

Show diffs side-by-side

added added

removed removed

Lines of Context:
611
611
                // type checking
612
612
                unit.resolve();
613
613
 
614
 
                unit.analyseCode();
 
614
                if ( this.options.enableSemanticValidation ) unit.analyseCode();
615
615
 
616
616
 
617
617
                // reference info
668
668
                                unit.resolve();
669
669
 
670
670
                                // flow analysis
671
 
                                if (analyzeCode) unit.analyseCode();
 
671
                                if (analyzeCode && this.options.enableSemanticValidation) unit.analyseCode();
672
672
 
673
673
                                // code generation
674
674
//                              if (generateCode) unit.generateCode();