From 1204ed79fce14115b802012772be8cf8aedff781 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Tue, 4 Jan 2011 13:06:49 -0700 Subject: parse.ast: avoid code duplication for inherit (Bitbake rev: 0b11a3d4eab84b372fd45b9537cf0327008daf8d) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- bitbake/lib/bb/parse/ast.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'bitbake/lib/bb/parse') diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py index 55ab485990..fe2674d432 100644 --- a/bitbake/lib/bb/parse/ast.py +++ b/bitbake/lib/bb/parse/ast.py @@ -260,11 +260,11 @@ class BBHandlerNode(AstNode): bb.data.setVar('__BBHANDLERS', bbhands, data) class InheritNode(AstNode): - def __init__(self, files): - self.n = __word__.findall(files) + def __init__(self, classes): + self.classes = classes def eval(self, data): - bb.parse.BBHandler.inherit(self.n, data) + bb.parse.BBHandler.inherit(self.classes, data) def handleInclude(statements, m, fn, lineno, force): statements.append(IncludeNode(m.group(1), fn, lineno, force)) @@ -300,9 +300,8 @@ def handleBBHandlers(statements, m): statements.append(BBHandlerNode(m.group(1))) def handleInherit(statements, m): - files = m.group(1) - n = __word__.findall(files) - statements.append(InheritNode(m.group(1))) + classes = m.group(1) + statements.append(InheritNode(__word__.findall(classes))) def finalize(fn, d, variant = None): for lazykey in bb.data.getVar("__lazy_assigned", d) or (): -- cgit v1.2.3-54-g00ecf