mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
export class Node2 {
|
|
a = 1;
|
|
c = {};
|
|
constructor() {
|
|
const b = { x: { y: 2 } };
|
|
const c: number = 2;
|
|
this.a = b?.x?.y;
|
|
}
|
|
} |