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

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

Issue 17851002: Use & instead of | in the value of [CallWith] / [SetterCallWith] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 | « no previous file | Source/bindings/scripts/generate-bindings.pl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/CodeGeneratorV8.pm
diff --git a/Source/bindings/scripts/CodeGeneratorV8.pm b/Source/bindings/scripts/CodeGeneratorV8.pm
index 1a5429d29c03c3db7d1d3329d406c56cba0398fb..333ea181ef17bc5bb95186890438de52f48aecab 100644
--- a/Source/bindings/scripts/CodeGeneratorV8.pm
+++ b/Source/bindings/scripts/CodeGeneratorV8.pm
@@ -6002,7 +6002,7 @@ sub ExtendedAttributeContains
return 0 unless $callWith;
my $keyword = shift;
- my @callWithKeywords = split /\s*\|\s*/, $callWith;
+ my @callWithKeywords = split /\s*\&\s*/, $callWith;
return grep { $_ eq $keyword } @callWithKeywords;
}
« no previous file with comments | « no previous file | Source/bindings/scripts/generate-bindings.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698