Yiwei Mao 93aa3e77b1 feat(variable): batch outputs (#426) 6 ヶ月 前
..
__mocks__ 311180b2c8 chore: hide useless api in variable engine (#180) 8 ヶ月 前
__tests__ 20b1dc1ae9 feat: add ASTMatch API in variable-core (#127) 9 ヶ月 前
src 93aa3e77b1 feat(variable): batch outputs (#426) 6 ヶ月 前
.eslintrc.js d7bdf8a078 feat: init flowgram.ai 10 ヶ月 前
README.md d7bdf8a078 feat: init flowgram.ai 10 ヶ月 前
package.json a98244c6a3 Feat/support react 16 (#221) 8 ヶ月 前
tsconfig.json d7bdf8a078 feat: init flowgram.ai 10 ヶ月 前
vitest.config.ts d7bdf8a078 feat: init flowgram.ai 10 ヶ月 前
vitest.setup.ts d7bdf8a078 feat: init flowgram.ai 10 ヶ月 前

README.md

变量引擎

文件夹结构

- ast 可响应AST树实现
  - common 通用AST节点
  - declaration 声明AST节点
  - expression 表达式AST节点
  - type 类型AST节点
  - utils 工具函数
  - ast-node.ts 可响应式AST基类实现
  - ast-registers.ts AST节点注册器
- scope 作用域实现
  - datas 作用域内部的Data
    - scope-available-data.ts 作用域可用变量
    - scope-output-data.ts 作用域输出变量
  - scope-chain.ts 作用域链抽象实现
  - scope.ts 作用域实体
  - variable-table.ts 变量快速访问表

Case Run Down