1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class A{
// attributes
a{
_set(value){
this.__attrib_a__=value;
}
_get(){
return this.__attrib_a__;
}
}
b{
_set(value){
this.__attrib_b__=value;
}
_get(){
return this.__attrib_b__;
}
}
}
Enter to Rename, <Shift>+Enter to Preview