Minor in JS backend: add @Nullable to JsNameRef#getQualifier and JsNameRef#getSymbol.

This commit is contained in:
Zalim Bashorov
2015-03-14 00:23:02 +03:00
parent d6c70cc143
commit 8054f18287
3 changed files with 5 additions and 3 deletions
@@ -50,11 +50,13 @@ public final class JsNameRef extends JsExpressionImpl implements HasName {
return name;
}
@Nullable
@Override
public Symbol getSymbol() {
return name;
}
@Nullable
public JsExpression getQualifier() {
return qualifier;
}