gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ./ChangeLog server/swf.h


From: strk
Subject: [Gnash-commit] gnash ./ChangeLog server/swf.h
Date: Tue, 07 Feb 2006 03:09:46 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Branch:         
Changes by:     strk <address@hidden>   06/02/07 03:09:46

Modified files:
        .              : ChangeLog 
        server         : swf.h 

Log message:
        Added dox for ACTION_CALLMETHOD

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/ChangeLog.diff?tr1=1.99&tr2=1.100&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/server/swf.h.diff?tr1=1.7&tr2=1.8&r1=text&r2=text

Patches:
Index: gnash/ChangeLog
diff -u gnash/ChangeLog:1.99 gnash/ChangeLog:1.100
--- gnash/ChangeLog:1.99        Tue Feb  7 03:08:45 2006
+++ gnash/ChangeLog     Tue Feb  7 03:09:46 2006
@@ -2,6 +2,7 @@
 
        * server/action.h: Added as_environment::dump_stack(), more dox
        * server/action.cpp: Fixed <as_function 0x0x####>, cleanups
+       * server/swf.h: Added dox for ACTION_CALLMETHOD
 
 2006-02-05 Sandro Santilli <address@hidden>
 
Index: gnash/server/swf.h
diff -u gnash/server/swf.h:1.7 gnash/server/swf.h:1.8
--- gnash/server/swf.h:1.7      Mon Feb  6 00:58:35 2006
+++ gnash/server/swf.h  Tue Feb  7 03:09:46 2006
@@ -236,17 +236,27 @@
                ACTION_SETMEMBER               = 0x4F,
                ACTION_INCREMENT               = 0x50,
                ACTION_DECREMENT               = 0x51,
+
+               /// SWF5
+               ///
+               /// Pops the name of a method (can be the empty string),
+               /// pop an object, pop the number of arguments, pop each
+               /// argument, call the method (function) of the object,
+               /// push the returned value on the stack.
+               ///
+               /// 
http://sswf.sourceforge.net/SWFalexref.html#action_call_method
+               ///
                ACTION_CALLMETHOD              = 0x52,
 
                /// SWF5
                ///
-                /// Pops the name of a method (can be the empty string),
-                /// pop an object (created with the Declare Object,)
-                /// pop the number of arguments, pop each argument,
-                /// create a new object, then call the specified method
-                /// (function) as the constructor function of the object,
-                /// push the returned value on the stack. This allows
-                /// for overloaded constructors as in C++.
+               /// Pops the name of a method (can be the empty string),
+               /// pop an object (created with the Declare Object,)
+               /// pop the number of arguments, pop each argument,
+               /// create a new object, then call the specified method
+               /// (function) as the constructor function of the object,
+               /// push the returned value on the stack. This allows
+               /// for overloaded constructors as in C++.
                ///
                /// 
http://sswf.sourceforge.net/SWFalexref.html#action_new_method
                ///




reply via email to

[Prev in Thread] Current Thread [Next in Thread]