[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:32:30 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 05384ba009d7e5b34482003c5d35080d766bc40a
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 19 00:11:38 2002 +0000

    	Remove stray references to CompletionType and CompletionImp.
    
            * kjs/completion.h:
            * kjs/object.cpp:
            * kjs/value.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1861 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 116a8f1..e5cd254 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,13 @@
 2002-08-18  Maciej Stachowiak  <mjs at apple.com>
 
+	Remove stray references to CompletionType and CompletionImp.
+	
+        * kjs/completion.h:
+        * kjs/object.cpp:
+        * kjs/value.h:
+
+2002-08-18  Maciej Stachowiak  <mjs at apple.com>
+
 	Separated Completion from Value and made it a pure stack
 	object. This removed another 160,000 of the remaining 580,000
 	garbage collected object allocations.
diff --git a/JavaScriptCore/ChangeLog-2002-12-03 b/JavaScriptCore/ChangeLog-2002-12-03
index 116a8f1..e5cd254 100644
--- a/JavaScriptCore/ChangeLog-2002-12-03
+++ b/JavaScriptCore/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-08-18  Maciej Stachowiak  <mjs at apple.com>
 
+	Remove stray references to CompletionType and CompletionImp.
+	
+        * kjs/completion.h:
+        * kjs/object.cpp:
+        * kjs/value.h:
+
+2002-08-18  Maciej Stachowiak  <mjs at apple.com>
+
 	Separated Completion from Value and made it a pure stack
 	object. This removed another 160,000 of the remaining 580,000
 	garbage collected object allocations.
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index 116a8f1..e5cd254 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2002-08-18  Maciej Stachowiak  <mjs at apple.com>
 
+	Remove stray references to CompletionType and CompletionImp.
+	
+        * kjs/completion.h:
+        * kjs/object.cpp:
+        * kjs/value.h:
+
+2002-08-18  Maciej Stachowiak  <mjs at apple.com>
+
 	Separated Completion from Value and made it a pure stack
 	object. This removed another 160,000 of the remaining 580,000
 	garbage collected object allocations.
diff --git a/JavaScriptCore/kjs/completion.h b/JavaScriptCore/kjs/completion.h
index a8547e6..947d694 100644
--- a/JavaScriptCore/kjs/completion.h
+++ b/JavaScriptCore/kjs/completion.h
@@ -48,7 +48,6 @@ namespace KJS {
   public:
     Completion(ComplType c = Normal, const Value& v = Value(),
                const UString &t = UString::null);
-    Completion(CompletionImp *v);
 
     ComplType complType() const;
     Value value() const;
diff --git a/JavaScriptCore/kjs/object.cpp b/JavaScriptCore/kjs/object.cpp
index a031ace..23f7642 100644
--- a/JavaScriptCore/kjs/object.cpp
+++ b/JavaScriptCore/kjs/object.cpp
@@ -193,7 +193,6 @@ void ObjectImp::put(ExecState *exec, const UString &propertyName,
                      const Value &value, int attr)
 {
   assert(!value.isNull());
-  assert(value.type() != CompletionType);
   assert(value.type() != ListType);
 
   /* TODO: check for write permissions directly w/o this call */
diff --git a/JavaScriptCore/kjs/value.h b/JavaScriptCore/kjs/value.h
index d00e460..9167bc7 100644
--- a/JavaScriptCore/kjs/value.h
+++ b/JavaScriptCore/kjs/value.h
@@ -63,7 +63,6 @@ namespace KJS {
   class List;
   class ListImp;
   class Completion;
-  class CompletionImp;
   class ExecState;
 
   /**
@@ -77,8 +76,7 @@ namespace KJS {
     StringType      = 4,
     NumberType      = 5,
     ObjectType      = 6,
-    ListType        = 8,
-    CompletionType  = 9
+    ListType        = 8
   };
 
   /**
@@ -181,8 +179,8 @@ namespace KJS {
 
     /**
      * Returns the type of value. This is one of UndefinedType, NullType,
-     * BooleanType, StringType NumberType, ObjectType, ReferenceType,
-     * ListType or CompletionType.
+     * BooleanType, StringType NumberType, ObjectType or
+     * ListType.
      *
      * @return The type of value
      */

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list