[Bast-commits] r5484 - in SQL-Abstract/1.x/branches/1.50_RC: .
lib/SQL/Abstract
norbi at dev.catalyst.perl.org
norbi at dev.catalyst.perl.org
Mon Feb 16 13:17:07 GMT 2009
Author: norbi
Date: 2009-02-16 13:17:07 +0000 (Mon, 16 Feb 2009)
New Revision: 5484
Modified:
SQL-Abstract/1.x/branches/1.50_RC/
SQL-Abstract/1.x/branches/1.50_RC/lib/SQL/Abstract/Test.pm
Log:
r5591 at vger: mendel | 2009-02-16 14:16:56 +0100
* Fixed 'use constant' statement to work on Perl 5.6.
Property changes on: SQL-Abstract/1.x/branches/1.50_RC
___________________________________________________________________
Name: svk:merge
- 4d5fae46-8e6a-4e08-abee-817e9fb894a2:/local/bast/SQL-Abstract/1.x/branches/1.50_RC:5588
4d5fae46-8e6a-4e08-abee-817e9fb894a2:/local/bast/SQL-Abstract/1.x/branches/1.50_RC-extraparens:5308
+ 4d5fae46-8e6a-4e08-abee-817e9fb894a2:/local/bast/SQL-Abstract/1.x/branches/1.50_RC:5591
4d5fae46-8e6a-4e08-abee-817e9fb894a2:/local/bast/SQL-Abstract/1.x/branches/1.50_RC-extraparens:5308
Modified: SQL-Abstract/1.x/branches/1.50_RC/lib/SQL/Abstract/Test.pm
===================================================================
--- SQL-Abstract/1.x/branches/1.50_RC/lib/SQL/Abstract/Test.pm 2009-02-16 13:17:04 UTC (rev 5483)
+++ SQL-Abstract/1.x/branches/1.50_RC/lib/SQL/Abstract/Test.pm 2009-02-16 13:17:07 UTC (rev 5484)
@@ -17,11 +17,9 @@
our $tb = __PACKAGE__->builder;
# Parser states for _recurse_parse()
-use constant {
- PARSE_TOP_LEVEL => 0,
- PARSE_IN_EXPR => 1,
- PARSE_IN_PARENS => 2,
-};
+use constant PARSE_TOP_LEVEL => 0;
+use constant PARSE_IN_EXPR => 1;
+use constant PARSE_IN_PARENS => 2;
# These SQL keywords always signal end of the current expression (except inside
# of a parenthesized subexpression).
More information about the Bast-commits
mailing list