--- a/Utilities/ClassBrowsers/jsclbr.py Sat Jan 12 11:26:32 2019 +0100 +++ b/Utilities/ClassBrowsers/jsclbr.py Sat Jan 12 12:11:42 2019 +0100 @@ -11,8 +11,8 @@ from __future__ import unicode_literals -import jasy.js.parse.Parser as jsParser -import jasy.js.tokenize.Tokenizer as jsTokenizer +import jasy.script.parse.Parser as jsParser +import jasy.script.tokenize.Tokenizer as jsTokenizer import Utilities import Utilities.ClassBrowsers as ClassBrowsers @@ -142,7 +142,7 @@ """ Public method to ignore the given node. - @param node reference to the node (jasy.js.parse.Node.Node) + @param node reference to the node (jasy.script.parse.Node.Node) """ pass @@ -150,7 +150,7 @@ """ Public method to treat a function node. - @param node reference to the node (jasy.js.parse.Node.Node) + @param node reference to the node (jasy.script.parse.Node.Node) """ if node.type == "function" and \ getattr(node, "name", None) and \ @@ -188,7 +188,7 @@ """ Public method to treat a property_init node. - @param node reference to the node (jasy.js.parse.Node.Node) + @param node reference to the node (jasy.script.parse.Node.Node) """ if node.type == "property_init" and node[1].type == "function": if self.__stack and self.__stack[-1].endlineno < node[0].line: @@ -224,7 +224,7 @@ """ Public method to treat a variable node. - @param node reference to the node (jasy.js.parse.Node.Node) + @param node reference to the node (jasy.script.parse.Node.Node) """ if node.type == "var" and \ node.parent.type == "script" and \ @@ -250,7 +250,7 @@ """ Public method to treat a constant node. - @param node reference to the node (jasy.js.parse.Node.Node) + @param node reference to the node (jasy.script.parse.Node.Node) """ if node.type == "const" and \ node.parent.type == "script" and \