langtools/src/share/classes/com/sun/tools/javac/tree/JCTree.java
changeset 8032 e1aa25ccdabb
parent 8031 d5fe2c1cecfc
child 8221 1f0ae42b572e
equal deleted inserted replaced
8031:d5fe2c1cecfc 8032:e1aa25ccdabb
  2233         public void visitAnnotation(JCAnnotation that)       { visitTree(that); }
  2233         public void visitAnnotation(JCAnnotation that)       { visitTree(that); }
  2234         public void visitModifiers(JCModifiers that)         { visitTree(that); }
  2234         public void visitModifiers(JCModifiers that)         { visitTree(that); }
  2235         public void visitErroneous(JCErroneous that)         { visitTree(that); }
  2235         public void visitErroneous(JCErroneous that)         { visitTree(that); }
  2236         public void visitLetExpr(LetExpr that)               { visitTree(that); }
  2236         public void visitLetExpr(LetExpr that)               { visitTree(that); }
  2237 
  2237 
  2238         public void visitTree(JCTree that)                   { assert false; }
  2238         public void visitTree(JCTree that)                   { Assert.error(); }
  2239     }
  2239     }
  2240 
  2240 
  2241 }
  2241 }