New test for identifiers

pull/185/head
Tim Whiting 2020-07-29 09:18:42 +07:00
parent fc8f57142f
commit 63f902d950
1 changed files with 15 additions and 0 deletions

@ -618,6 +618,21 @@ class MyClass {
(formal_parameter (type_identifier) (identifier)))))
(function_body (block)))))
======================================
Get and set identifiers
======================================
class Tree {
Set toSet() {
Set set = Set();
set._count = _count;
set._root = _root;
return set;
}
}
---
==================================
void types
==================================