Consider the following: ```groovy class MapBased extends HashMap { private field = 'field' void test() { print this.field } } ``` When `test()` is executed, it prints "field". Highlighting indicates that `this.field` is a map lookup. 
Consider the following:
When
test()is executed, it prints "field". Highlighting indicates thatthis.fieldis a map lookup.