Skip to content

Commit

Permalink
Use any_string for some parameters (#19)
Browse files Browse the repository at this point in the history
* Use any_string for some parameters

* Prepare kin for carthage projects
  • Loading branch information
Serchinastico authored Jun 22, 2016
1 parent 237d4fe commit 6ab1adf
Show file tree
Hide file tree
Showing 3 changed files with 160 additions and 157 deletions.
6 changes: 3 additions & 3 deletions kin/grammar/PBXProj.g4
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ line_ending
;

xc_language_specification_identifier
: 'xcLanguageSpecificationIdentifier' '=' NON_QUOTED_STRING ';'
: 'xcLanguageSpecificationIdentifier' '=' any_string ';'
;

attributes
Expand Down Expand Up @@ -656,7 +656,7 @@ targets
;

input_paths
: 'inputPaths' '=' non_quoted_strings_list ';'
: 'inputPaths' '=' any_string_list ';'
;

output_paths
Expand Down Expand Up @@ -755,7 +755,7 @@ version_group_type
;

class_prefix
: 'CLASSPREFIX' '=' NON_QUOTED_STRING ';'
: 'CLASSPREFIX' '=' any_string ';'
;

any_string
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.3
# Generated from PBXProj.g4 by ANTLR 4.5.2
# encoding: utf-8
from __future__ import print_function
from antlr4 import *
Expand Down Expand Up @@ -946,7 +946,7 @@ class PBXProjLexer(Lexer):

def __init__(self, input=None):
super(PBXProjLexer, self).__init__(input)
self.checkVersion("4.5.3")
self.checkVersion("4.5.2")
self._interp = LexerATNSimulator(self, self.atn, self.decisionsToDFA, PredictionContextCache())
self._actions = None
self._predicates = None
Expand Down
Loading

0 comments on commit 6ab1adf

Please sign in to comment.