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()211 parenthesesNesting == 0) { in Apply()212 parenthesesNesting = 1; in Apply()216 if (bytes == 1 && parenthesesNesting > 0 && token[0] == '(') { in Apply()217 ++parenthesesNesting; in Apply()218 } else if (bytes == 1 && parenthesesNesting > 0 && token[0] == ')') { in Apply()219 if (--parenthesesNesting == 0) { in Apply()