From 80a0c1b06a30a6ba9977c29fac0437a208d8cbbc Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 22 Aug 2012 20:01:55 +0100 Subject: ast: Store anonymous python function contents in the datstore This is useful if we need to disable part of one during a backtrace for debugging purposes. Signed-off-by: Richard Purdie --- lib/bb/parse/ast.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/bb/parse/ast.py') diff --git a/lib/bb/parse/ast.py b/lib/bb/parse/ast.py index dfc0b0224..4caa93e04 100644 --- a/lib/bb/parse/ast.py +++ b/lib/bb/parse/ast.py @@ -134,6 +134,7 @@ class MethodNode(AstNode): anonfuncs = data.getVar('__BBANONFUNCS') or [] anonfuncs.append(funcname) data.setVar('__BBANONFUNCS', anonfuncs) + data.setVar(funcname, text) else: data.setVarFlag(self.func_name, "func", 1) data.setVar(self.func_name, text) -- cgit 1.2.3-korg