Skip to content

Commit

Permalink
Add optional path to PBX variant group
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Gutierrez committed Apr 19, 2016
1 parent cac000a commit cd3f88a
Show file tree
Hide file tree
Showing 4 changed files with 1,142 additions and 1,122 deletions.
1 change: 1 addition & 0 deletions kin/grammar/PBXProj.g4
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ pbx_variant_group
isa_pbx_variant_group
children
name
path?
source_tree
'}' ';'
;
Expand Down
4 changes: 2 additions & 2 deletions kin/grammar/PBXProjLexer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated from PBXProj.g4 by ANTLR 4.5.2
# Generated from PBXProj.g4 by ANTLR 4.5.3
# encoding: utf-8
from __future__ import print_function
from antlr4 import *
Expand Down Expand Up @@ -931,7 +931,7 @@ class PBXProjLexer(Lexer):

def __init__(self, input=None):
super(PBXProjLexer, self).__init__(input)
self.checkVersion("4.5.2")
self.checkVersion("4.5.3")
self._interp = LexerATNSimulator(self, self.atn, self.decisionsToDFA, PredictionContextCache())
self._actions = None
self._predicates = None
Expand Down
2 changes: 1 addition & 1 deletion kin/grammar/PBXProjListener.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated from PBXProj.g4 by ANTLR 4.5.2
# Generated from PBXProj.g4 by ANTLR 4.5.3
from antlr4 import *

# This class defines a complete listener for a parse tree produced by PBXProjParser.
Expand Down
Loading

0 comments on commit cd3f88a

Please sign in to comment.