[feaLib.parser] change argument name

This commit is contained in:
Cosimo Lupo 2016-03-21 18:47:27 +00:00
parent 06b9a808ad
commit 6a05367a2c

View File

@ -13,7 +13,7 @@ log = logging.getLogger(__name__)
class Parser(object):
def __init__(self, fea_path_data):
def __init__(self, featurefile):
self.doc_ = ast.FeatureFile()
self.anchors_ = SymbolTable()
self.glyphclasses_ = SymbolTable()
@ -24,7 +24,7 @@ class Parser(object):
}
self.next_token_type_, self.next_token_ = (None, None)
self.next_token_location_ = None
self.lexer_ = IncludingLexer(fea_path_data)
self.lexer_ = IncludingLexer(featurefile)
self.advance_lexer_()
def parse(self):