remove stray tab, fix comment

This commit is contained in:
Robert Muir 2016-06-13 13:35:11 -04:00
parent faee2323ab
commit c6e144f669
2 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ funcref
// reference to a static or instance method, e.g. ArrayList::size or Integer::compare
classFuncref
: TYPE REF ID
;
;
// reference to a constructor, e.g. ArrayList::new
// currently limited to simple non-array types

View File

@ -48,7 +48,7 @@ public final class EChain extends AExpression {
Cast there = null;
Cast back = null;
/** Creates a new simple EChain */
/** Creates a new RHS-only EChain */
public EChain(Location location, ALink link) {
this(location, Arrays.asList(link), false, false, null, null);
}