Thu, 07 Jul 2022 11:23:56 +0200
Reorganized the project structure to use the source layout in order to support up-to-date build systems with "pyproject.toml".
# # Jasy - Web Tooling Framework # Copyright 2013-2014 Sebastian Werner # from __future__ import unicode_literals import jasy.parse.AbstractNode as AbstractNode class Node(AbstractNode.AbstractNode): __slots__ = [ # core data "line", "type", "tokenizer", "start", "end", "rel", "parent", # dynamic added data by other modules "comments", "scope", # node type specific "value", "expression", "body", "functionForm", "parenthesized", "fileId", "params", "name", "readOnly", "initializer", "condition", "isLoop", "isEach", "object", "assignOp", "iterator", "thenPart", "exception", "elsePart", "setup", "postfix", "update", "tryBlock", "block", "defaultIndex", "discriminant", "label", "statements", "finallyBlock", "statement", "variables", "names", "guard", "for", "tail", "expressionClosure" ]