Title: [204503] trunk/Source/WebCore
Revision
204503
Author
[email protected]
Date
2016-08-16 08:53:52 -0700 (Tue, 16 Aug 2016)

Log Message

        * bindings/scripts/test/JS/JSTestOverloadedConstructorsWithSequence.cpp:
        Regenerated results, which were affected by the sequence<T> change last night.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (204502 => 204503)


--- trunk/Source/WebCore/ChangeLog	2016-08-16 09:43:04 UTC (rev 204502)
+++ trunk/Source/WebCore/ChangeLog	2016-08-16 15:53:52 UTC (rev 204503)
@@ -1,3 +1,8 @@
+2016-08-16  Darin Adler  <[email protected]>
+
+        * bindings/scripts/test/JS/JSTestOverloadedConstructorsWithSequence.cpp:
+        Regenerated results, which were affected by the sequence<T> change last night.
+
 2016-08-16  Per Arne Vollan  <[email protected]>
 
         [Win] Hardening of getLinkedFonts function.

Modified: trunk/Source/WebCore/bindings/scripts/test/JS/JSTestOverloadedConstructorsWithSequence.cpp (204502 => 204503)


--- trunk/Source/WebCore/bindings/scripts/test/JS/JSTestOverloadedConstructorsWithSequence.cpp	2016-08-16 09:43:04 UTC (rev 204502)
+++ trunk/Source/WebCore/bindings/scripts/test/JS/JSTestOverloadedConstructorsWithSequence.cpp	2016-08-16 15:53:52 UTC (rev 204503)
@@ -70,7 +70,7 @@
     auto sequenceOfStrings = state->argument(0).isUndefined() ? Vector<String>() : toNativeArray<String>(*state, state->uncheckedArgument(0));
     if (UNLIKELY(state->hadException()))
         return JSValue::encode(jsUndefined());
-    auto object = TestOverloadedConstructorsWithSequence::create(sequenceOfStrings);
+    auto object = TestOverloadedConstructorsWithSequence::create(WTFMove(sequenceOfStrings));
     return JSValue::encode(asObject(toJSNewlyCreated(state, castedThis->globalObject(), WTFMove(object))));
 }
 
@@ -82,7 +82,7 @@
     auto string = state->argument(0).toWTFString(state);
     if (UNLIKELY(state->hadException()))
         return JSValue::encode(jsUndefined());
-    auto object = TestOverloadedConstructorsWithSequence::create(string);
+    auto object = TestOverloadedConstructorsWithSequence::create(WTFMove(string));
     return JSValue::encode(asObject(toJSNewlyCreated(state, castedThis->globalObject(), WTFMove(object))));
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to