Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B4BCA112E2 for ; Thu, 24 Apr 2014 16:06:54 +0000 (UTC) Received: (qmail 92153 invoked by uid 500); 24 Apr 2014 16:05:48 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 91920 invoked by uid 500); 24 Apr 2014 16:05:41 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 91676 invoked by uid 99); 24 Apr 2014 16:05:37 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Apr 2014 16:05:37 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 6A6BB9914C8; Thu, 24 Apr 2014 16:05:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: josebarragan@apache.org To: commits@flex.apache.org Date: Thu, 24 Apr 2014 16:06:22 -0000 Message-Id: <38607649c4e64fa88ce0e6d1f52ded70@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [50/50] [abbrv] git commit: [flex-falcon] [refs/heads/maven] - remove JFlex parse warnings remove JFlex parse warnings Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/2bd7b243 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/2bd7b243 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/2bd7b243 Branch: refs/heads/maven Commit: 2bd7b2437599cbaa554812aba606d01bd599a208 Parents: 794893c Author: Jose Barragan Authored: Fri Feb 28 19:10:52 2014 +0100 Committer: Jose Barragan Committed: Thu Apr 24 18:03:14 2014 +0200 ---------------------------------------------------------------------- .../flex/compiler/internal/parsing/as/RawASDocTokenizer.lex | 4 ++-- .../flex/compiler/internal/parsing/as/RawASTokenizer.lex | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/2bd7b243/compiler/src/org/apache/flex/compiler/internal/parsing/as/RawASDocTokenizer.lex ---------------------------------------------------------------------- diff --git a/compiler/src/org/apache/flex/compiler/internal/parsing/as/RawASDocTokenizer.lex b/compiler/src/org/apache/flex/compiler/internal/parsing/as/RawASDocTokenizer.lex index 03b7a8f..5312ac9 100644 --- a/compiler/src/org/apache/flex/compiler/internal/parsing/as/RawASDocTokenizer.lex +++ b/compiler/src/org/apache/flex/compiler/internal/parsing/as/RawASDocTokenizer.lex @@ -194,7 +194,7 @@ NS_WHITE_SPACE_CHAR=[\r\n\t\b\012] startOrContinueAggregate(); } - ([\\](.|"\n"))+ + ([\\]([^]|"\n"))+ { startOrContinueAggregate(); } @@ -231,7 +231,7 @@ NS_WHITE_SPACE_CHAR=[\r\n\t\b\012] return buildToken(TOKEN_ASDOC_TAG); } - .|"\n" + [^]|"\n" { // just ignore anything that we don't recognize // System.out.println(getContext(yyline)); http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/2bd7b243/compiler/src/org/apache/flex/compiler/internal/parsing/as/RawASTokenizer.lex ---------------------------------------------------------------------- diff --git a/compiler/src/org/apache/flex/compiler/internal/parsing/as/RawASTokenizer.lex b/compiler/src/org/apache/flex/compiler/internal/parsing/as/RawASTokenizer.lex index f0fd6b6..d814d45 100644 --- a/compiler/src/org/apache/flex/compiler/internal/parsing/as/RawASTokenizer.lex +++ b/compiler/src/org/apache/flex/compiler/internal/parsing/as/RawASTokenizer.lex @@ -845,7 +845,7 @@ REGEX_CLASS="[" ({REGEX_ESCAPE}|[^\n\r\]\\])* "]" { } - .|"\n" + [^]|"\n" { yypushback(1); typedDepth = 0; @@ -932,7 +932,7 @@ REGEX_CLASS="[" ({REGEX_ESCAPE}|[^\n\r\]\\])* "]" return buildToken(TOKEN_E4X_EQUALS); } - .|"\n" + [^]|"\n" { yypushback(1); yybegin(e4xTagDepth > 0 ? E4XTEXTVALUE : YYINITIAL); @@ -1319,7 +1319,7 @@ REGEX_CLASS="[" ({REGEX_ESCAPE}|[^\n\r\]\\])* "]" yybegin(YYINITIAL); } - .|"\n" + [^]|"\n" { addBadCharacterProblem(yytext()); }