aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/parse/ast.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-22 13:54:01 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-23 08:48:45 +0100
commit79f9f46319de85f85613ebe248c327f5852225ba (patch)
tree0ea1e7dd49c1820f0e3cd71b8dc89ca195015a66 /lib/bb/parse/ast.py
parentf1e943aebfb84e98253f3f21646d6765c4fa1d66 (diff)
downloadbitbake-79f9f46319de85f85613ebe248c327f5852225ba.tar.gz
ast: Rename PythonMethodNode define variable to modulename
It was hard for me to understand what the define variable was, modulename is hopefully a bit better. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/parse/ast.py')
-rw-r--r--lib/bb/parse/ast.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/bb/parse/ast.py b/lib/bb/parse/ast.py
index 4d3a623aa..b7eaff1c6 100644
--- a/lib/bb/parse/ast.py
+++ b/lib/bb/parse/ast.py
@@ -138,10 +138,10 @@ class MethodNode(AstNode):
data.setVar(self.func_name, '\n'.join(self.body))
class PythonMethodNode(AstNode):
- def __init__(self, filename, lineno, function, define, body):
+ def __init__(self, filename, lineno, function, modulename, body):
AstNode.__init__(self, filename, lineno)
self.function = function
- self.define = define
+ self.modulename = modulename
self.body = body
def eval(self, data):
@@ -149,8 +149,8 @@ class PythonMethodNode(AstNode):
# 'this' file. This means we will not parse methods from
# bb classes twice
text = '\n'.join(self.body)
- if not bb.methodpool.parsed_module(self.define):
- bb.methodpool.insert_method(self.define, text, self.filename)
+ if not bb.methodpool.parsed_module(self.modulename):
+ bb.methodpool.insert_method(self.modulename, text, self.filename)
data.setVarFlag(self.function, "func", 1)
data.setVarFlag(self.function, "python", 1)
data.setVar(self.function, text)
@@ -280,8 +280,8 @@ def handleData(statements, filename, lineno, groupd):
def handleMethod(statements, filename, lineno, func_name, body):
statements.append(MethodNode(filename, lineno, func_name, body))
-def handlePythonMethod(statements, filename, lineno, funcname, root, body):
- statements.append(PythonMethodNode(filename, lineno, funcname, root, body))
+def handlePythonMethod(statements, filename, lineno, funcname, modulename, body):
+ statements.append(PythonMethodNode(filename, lineno, funcname, modulename, body))
def handleMethodFlags(statements, filename, lineno, key, m):
statements.append(MethodFlagsNode(filename, lineno, key, m))