Title: [158941] trunk/Source/_javascript_Core
Revision
158941
Author
[email protected]
Date
2013-11-08 12:41:12 -0800 (Fri, 08 Nov 2013)

Log Message

Remove accidentally added files.

Modified Paths


Removed Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (158940 => 158941)


--- trunk/Source/_javascript_Core/ChangeLog	2013-11-08 20:27:55 UTC (rev 158940)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-11-08 20:41:12 UTC (rev 158941)
@@ -1,5 +1,12 @@
 2013-11-08  Oliver Hunt  <[email protected]>
 
+        Remove accidentally added files.
+
+        * runtime/JSSetIterator.cpp: Removed.
+        * runtime/JSSetIterator.h: Removed.
+
+2013-11-08  Oliver Hunt  <[email protected]>
+
         Fix minor (unobservable) bug in ArrayIterator::next()
         https://bugs.webkit.org/show_bug.cgi?id=124061
 

Deleted: trunk/Source/_javascript_Core/runtime/JSSetIterator.cpp (158940 => 158941)


--- trunk/Source/_javascript_Core/runtime/JSSetIterator.cpp	2013-11-08 20:27:55 UTC (rev 158940)
+++ trunk/Source/_javascript_Core/runtime/JSSetIterator.cpp	2013-11-08 20:41:12 UTC (rev 158941)
@@ -1,41 +0,0 @@
-/*
- * Copyright (C) 2013 Apple, Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#include "config.h"
-#include "JSSetIterator.h"
-
-#include "JSSet.h"
-
-namespace JSC {
-
-const ClassInfo JSSetIterator::s_info = { "Set Iterator", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(JSSetIterator) };
-
-void JSSetIterator::finishCreation(VM& vm, JSSet* iteratedObject)
-{
-    Base::finishCreation(vm);
-    m_iteratedObject.set(vm, this, iteratedObject);
-}
-
-}

Deleted: trunk/Source/_javascript_Core/runtime/JSSetIterator.h (158940 => 158941)


--- trunk/Source/_javascript_Core/runtime/JSSetIterator.h	2013-11-08 20:27:55 UTC (rev 158940)
+++ trunk/Source/_javascript_Core/runtime/JSSetIterator.h	2013-11-08 20:41:12 UTC (rev 158941)
@@ -1,73 +0,0 @@
-/*
- * Copyright (C) 2013 Apple, Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef JSSetIterator_h
-#define JSSetIterator_h
-
-#include "JSSet.h"
-
-namespace JSC {
-
-class JSSetIterator : public JSNonFinalObject {
-public:
-    typedef JSNonFinalObject Base;
-
-    DECLARE_EXPORT_INFO;
-
-    static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype)
-    {
-        return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info());
-    }
-
-    static JSSetIterator* create(VM& vm, Structure* structure)
-    {
-        JSSetIterator* instance = new (NotNull, allocateCell<JSSetIterator>(vm.heap)) JSSetIterator(vm, structure);
-        instance->finishCreation(vm, structure->globalObject());
-        return instance;
-    }
-
-    static JSSetIterator* create(ExecState* exec, Structure* structure)
-    {
-        return create(exec->vm(), structure);
-    }
-
-private:
-
-    static const unsigned StructureFlags = Base::StructureFlags;
-
-    JSSetIterator(VM& vm, Structure* structure)
-        : Base(vm, structure)
-    {
-    }
-
-    void finishCreation(VM&, JSGlobalObject*);
-    
-    JSSet::const_iterator m_iterator;
-    WriteBarrier<JSSet> m_iteratedObject;
-};
-
-}
-
-#endif // !defined(JSSetIterator_h)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to