Searched refs:parenthesesNesting (Results 1 – 1 of 1) sorted by relevance
144 int parenthesesNesting{0}; in Apply() local152 ++parenthesesNesting; in Apply()154 skipping = --parenthesesNesting > 0; in Apply()210 parenthesesNesting == 0) { in Apply()211 parenthesesNesting = 1; in Apply()215 if (bytes == 1 && parenthesesNesting > 0 && token[0] == '(') { in Apply()216 ++parenthesesNesting; in Apply()217 } else if (bytes == 1 && parenthesesNesting > 0 && token[0] == ')') { in Apply()218 if (--parenthesesNesting == 0) { in Apply()