Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Unified Diff: Source/bindings/scripts/idl_parser.pm

Issue 24156003: Revert IDL compiler build flow to Perl, rename 'deprecated' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/scripts/idl_definitions_builder.py ('k') | Source/bindings/scripts/idl_reader.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/idl_parser.pm
diff --git a/Source/bindings/scripts/deprecated_idl_parser.pm b/Source/bindings/scripts/idl_parser.pm
similarity index 99%
rename from Source/bindings/scripts/deprecated_idl_parser.pm
rename to Source/bindings/scripts/idl_parser.pm
index 2affe5e3dbb33b5ce43785ce26ac04113559bbd2..686602843ae64b154ed15e7f5b324eb6e0f946ba 100644
--- a/Source/bindings/scripts/deprecated_idl_parser.pm
+++ b/Source/bindings/scripts/idl_parser.pm
@@ -19,7 +19,7 @@
# Boston, MA 02110-1301, USA.
#
-package deprecated_idl_parser;
+package idl_parser;
use strict;
@@ -152,7 +152,7 @@ sub assertTokenValue
my $line = shift;
my $msg = "Next token should be " . $value . ", but " . $token->value() . " at " . $self->{Line};
if (defined ($line)) {
- $msg .= " deprecated_idl_parser.pm:" . $line;
+ $msg .= " idl_parser.pm:" . $line;
}
die $msg unless $token->value() eq $value;
}
@@ -172,7 +172,7 @@ sub assertUnexpectedToken
my $line = shift;
my $msg = "Unexpected token " . $token . " at " . $self->{Line};
if (defined ($line)) {
- $msg .= " deprecated_idl_parser.pm:" . $line;
+ $msg .= " idl_parser.pm:" . $line;
}
die $msg;
}
@@ -185,7 +185,7 @@ sub assertNoExtendedAttributesInTypedef
my $typedef = $typedefs{$name};
my $msg = "Unexpected extendedAttributeList in typedef \"$name\" at " . $self->{Line};
if (defined ($line)) {
- $msg .= " deprecated_idl_parser.pm:" . $line;
+ $msg .= " idl_parser.pm:" . $line;
}
die $msg if %{$typedef->extendedAttributes};
}
« no previous file with comments | « Source/bindings/scripts/idl_definitions_builder.py ('k') | Source/bindings/scripts/idl_reader.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698