mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 09:52:57 +03:00
12 lines
172 B
JavaScript
12 lines
172 B
JavaScript
/** Sample class. */
|
|
class A {
|
|
/** Public property. */
|
|
b = 1;
|
|
|
|
/** Private property. */
|
|
#c = 2;
|
|
|
|
/** Property with no value assigned to it. */
|
|
d;
|
|
}
|