0.3.0 • Published 2 years ago

scope-tree v0.3.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Scope Tree

Module scope

const moduleScope = new ModuleScope()
moduleScope.addImport('any', 'Banana', Banana)

Function scope

const functionScope = new FunctionScope()
functionScope.addVariable('const', 'any', 'banana', 'Banana')

Class scope

const classScope = new ClassScope()
classScope.addMethod('any', 'getFruit', [
  ['any', 'name']
])