Title: [109195] trunk/Source

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (109194 => 109195)


--- trunk/Source/_javascript_Core/ChangeLog	2012-02-29 06:28:29 UTC (rev 109194)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-02-29 06:36:05 UTC (rev 109195)
@@ -1,3 +1,9 @@
+2012-02-28  Kevin Ollivier  <[email protected]>
+
+        [wx] Unreviewed. Build fix after recent LLInt additions.
+        
+        * wscript:
+
 2012-02-28  Mark Hahnenberg  <[email protected]>
 
         Refactor SpeculativeJIT::emitAllocateJSFinalObject

Modified: trunk/Source/_javascript_Core/wscript (109194 => 109195)


--- trunk/Source/_javascript_Core/wscript	2012-02-29 06:28:29 UTC (rev 109194)
+++ trunk/Source/_javascript_Core/wscript	2012-02-29 06:36:05 UTC (rev 109195)
@@ -33,7 +33,7 @@
 
     import Options
 
-    jscore_excludes = ['jsc.cpp', 'ExecutableAllocatorPosix.cpp']
+    jscore_excludes = ['jsc.cpp', 'ExecutableAllocatorPosix.cpp', 'LLIntOffsetsExtractor.cpp']
     jscore_excludes.extend(get_excludes(jscore_dir, ['*CF.cpp', '*Symbian.cpp']))
     jscore_excludes.extend(get_excludes(jscore_dir, ['*None.cpp']))
 

Modified: trunk/Source/WebCore/ChangeLog (109194 => 109195)


--- trunk/Source/WebCore/ChangeLog	2012-02-29 06:28:29 UTC (rev 109194)
+++ trunk/Source/WebCore/ChangeLog	2012-02-29 06:36:05 UTC (rev 109195)
@@ -1,3 +1,11 @@
+2012-02-28  Kevin Ollivier  <[email protected]>
+
+        [wx] Unreviewed. Build fixes after recent bindings changes.
+
+        * bindings/scripts/CodeGeneratorCPP.pm: 
+        (ShouldSkipType):
+        * testing/Internals.idl:
+
 2012-02-28  Yoshifumi Inoue  <[email protected]>
 
         [Forms] Spin button sometimes ignores Indeterminate of m_upDownState

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorCPP.pm (109194 => 109195)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorCPP.pm	2012-02-29 06:28:29 UTC (rev 109194)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorCPP.pm	2012-02-29 06:36:05 UTC (rev 109195)
@@ -197,7 +197,7 @@
     # FIXME: We don't generate bindings for SVG related interfaces yet
     return 1 if $typeInfo->signature->name =~ /getSVGDocument/;
 
-    return 1 if $typeInfo->signature->name =~ /Constructor/;
+    return 1 if $typeInfo->signature->type =~ /Constructor$/;
     
     # FIXME: This is typically used to add script execution state arguments to the method.
     # These functions will not compile with the C++ bindings as is, so disable them

Modified: trunk/Source/WebCore/testing/Internals.idl (109194 => 109195)


--- trunk/Source/WebCore/testing/Internals.idl	2012-02-29 06:28:29 UTC (rev 109194)
+++ trunk/Source/WebCore/testing/Internals.idl	2012-02-29 06:36:05 UTC (rev 109195)
@@ -47,7 +47,6 @@
         Node youngestShadowRoot(in Element host) raises (DOMException);
         Node oldestShadowRoot(in Element host) raises (DOMException);
         Node youngerShadowRoot(in Node root) raises (DOMException);
-        Node youngerShadowRoot(in Node root) raises (DOMException);
 #endif
         void setMultipleShadowSubtreesEnabled(in boolean enabled);
         Element includerFor(in Node node) raises (DOMException);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to