[feaLib.parser] change argument name
This commit is contained in:
parent
06b9a808ad
commit
6a05367a2c
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user