Ignore:
Timestamp:
Jul 14, 2005, 11:27:04 AM (20 years ago)
Author:
ggaren
Message:

-rolled in patches for http://bugzilla.opendarwin.org/show_bug.cgi?id=3945
[PATCH] Safe merges of comments and other trivialities from KDE's kjs

-patch by Martijn Klingens <[email protected]>

  • kjs/array_instance.h:
  • kjs/array_object.cpp:
  • kjs/array_object.h:
  • kjs/bool_object.cpp:
  • kjs/bool_object.h:
  • kjs/collector.cpp:
  • kjs/collector.h:
  • kjs/completion.h:
  • kjs/context.h:
  • kjs/date_object.cpp:
  • kjs/date_object.h:
  • kjs/debugger.cpp:
  • kjs/debugger.h:
  • kjs/dtoa.h:
  • kjs/error_object.cpp:
  • kjs/error_object.h:
  • kjs/function.cpp:
  • kjs/function.h:
  • kjs/function_object.cpp:
  • kjs/function_object.h:
  • kjs/grammar.y:
  • kjs/identifier.cpp:
  • kjs/identifier.h:
  • kjs/internal.cpp:
  • kjs/internal.h:
  • kjs/interpreter.cpp:
  • kjs/interpreter.h:
  • kjs/interpreter_map.cpp:
  • kjs/interpreter_map.h:
  • kjs/lexer.cpp:
  • kjs/lexer.h:
  • kjs/list.cpp:
  • kjs/list.h:
  • kjs/lookup.cpp:
  • kjs/lookup.h:
  • kjs/math_object.cpp:
  • kjs/math_object.h:
  • kjs/nodes.cpp:
  • kjs/nodes.h:
  • kjs/nodes2string.cpp:
  • kjs/number_object.cpp:
  • kjs/number_object.h:
  • kjs/object.cpp:
  • kjs/object.h:
  • kjs/object_object.cpp:
  • kjs/object_object.h:
  • kjs/operations.cpp:
  • kjs/operations.h:
  • kjs/property_map.cpp:
  • kjs/property_map.h:
  • kjs/reference.cpp:
  • kjs/reference.h:
  • kjs/reference_list.cpp:
  • kjs/reference_list.h:
  • kjs/regexp.cpp:
  • kjs/regexp.h:
  • kjs/regexp_object.cpp:
  • kjs/regexp_object.h:
  • kjs/scope_chain.cpp:
  • kjs/scope_chain.h:
  • kjs/simple_number.h:
  • kjs/string_object.cpp:
  • kjs/string_object.h:
  • kjs/testkjs.cpp:
  • kjs/types.h:
  • kjs/ustring.cpp:
  • kjs/ustring.h:
  • kjs/value.cpp:
  • kjs/value.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/interpreter.h

    r9554 r9768  
    1818 *  You should have received a copy of the GNU Library General Public License
    1919 *  along with this library; see the file COPYING.LIB.  If not, write to
    20  *  the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    21  *  Boston, MA 02111-1307, USA.
     20 *  the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
     21 *  Boston, MA 02110-1301, USA.
    2222 *
    2323 */
     
    4949   * script - the scope for variable lookup, the value of "this", etc. A new
    5050   * execution context is entered whenever global code is executed (e.g. with
    51    * @ref Interpreter::evaluate()), a function is called (see @ref
     51   * Interpreter::evaluate()), a function is called (see
    5252   * Object::call()), or the builtin "eval" function is executed.
    5353   *
    54    * Most inheritable functions in the KJS api take a @ref ExecState pointer as
     54   * Most inheritable functions in the KJS api take a ExecState pointer as
    5555   * their first parameter. This can be used to obtain a handle to the current
    5656   * execution context.
     
    102102    /**
    103103     * Returns the context from which the current context was invoked. For
    104      * global code this will be a null context (i.e. one for which @ref
    105      * isNull() returns true). You should check @ref isNull() on the returned
     104     * global code this will be a null context (i.e. one for which
     105     * isNull() returns true). You should check isNull() on the returned
    106106     * value before calling any of it's methods.
    107107     *
     
    340340     * Call this to enable a compatibility mode with another browser.
    341341     * (by default konqueror is in "native mode").
    342      * Currently, in KJS, this only changes the behaviour of Date::getYear()
     342     * Currently, in KJS, this only changes the behavior of Date::getYear()
    343343     * which returns the full year under IE.
    344344     */
     
    477477  };
    478478
    479 }; // namespace
     479} // namespace
    480480
    481481#endif // _KJS_INTERPRETER_H_
Note: See TracChangeset for help on using the changeset viewer.