@@ -14,9 +14,11 @@ class ThisLookup {
1414 assert (false , 'Do not construct instances of LexicalLookup' );
1515 }
1616
17- /// Attempts to resolve an identifier with name [id] via implicit `this.` ,
18- /// assuming we are trying to look up a getter. If a matching element is
19- /// found, a [LexicalLookupResult] is returned. Otherwise `null` is returned.
17+ /// Attempts to resolve an identifier with name, `node.name` , via implicit
18+ /// `this.` , assuming we are trying to look up a getter.
19+ ///
20+ /// If a matching element is found, a [LexicalLookupResult] is returned.
21+ /// Otherwise `null` is returned.
2022 static LexicalLookupResult ? lookupGetter (
2123 ResolverVisitor resolver, SimpleIdentifier node) {
2224 var id = node.name;
@@ -55,9 +57,11 @@ class ThisLookup {
5557 }
5658 }
5759
58- /// Attempts to resolve an identifier with name [id] via implicit `this.` ,
59- /// assuming we are trying to look up a setter. If a matching element is
60- /// found, a [LexicalLookupResult] is returned. Otherwise `null` is returned.
60+ /// Attempts to resolve an identifier with name, `node.name` , via implicit
61+ /// `this.` , assuming we are trying to look up a setter.
62+ ///
63+ /// If a matching element is found, a [LexicalLookupResult] is returned.
64+ /// Otherwise `null` is returned.
6165 static LexicalLookupResult ? lookupSetter (
6266 ResolverVisitor resolver, SimpleIdentifier node) {
6367 var id = node.name;
0 commit comments