You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdelibs/kjs
Michele Calgaro 05ee12e2df
Fixed more uncrustify's code formatting offending files.
4 years ago
..
CMakeLists.txt
ChangeLog
DESIGN.ideas Revert automated changes 14 years ago
Mainpage.dox
Makefile.am
README Rename KHTML and kiobuffer 12 years ago
THANKS
array_instance.h Removed code formatting modelines. 4 years ago
array_object.cpp
array_object.h Removed code formatting modelines. 4 years ago
bool_object.cpp
bool_object.h
collector.cpp
collector.h Removed code formatting modelines. 4 years ago
completion.h Removed code formatting modelines. 4 years ago
configure.in.in Use the correct macros isnan, isinf for libc compatibility 5 years ago
context.h Removed code formatting modelines. 4 years ago
create_hash_table
date_object.cpp
date_object.h
debugger.cpp
debugger.h Removed code formatting modelines. 4 years ago
dtoa.cpp Fixed some uncrustify's code formatting offending files. 4 years ago
dtoa.h
error_object.cpp
error_object.h
function.cpp
function.h
function_object.cpp
function_object.h Removed code formatting modelines. 4 years ago
global.h.in Removed code formatting modelines. 4 years ago
grammar.cpp Fixed some uncrustify's code formatting offending files. 4 years ago
grammar.h
grammar.y Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
identifier.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
identifier.h
internal.cpp
internal.h Removed code formatting modelines. 4 years ago
interpreter.cpp
interpreter.h
keywords.table
kjs-devel-gdb
lexer.cpp
lexer.h
libkjs.map
list.cpp
list.h
lookup.cpp
lookup.h
math_object.cpp
math_object.h Removed code formatting modelines. 4 years ago
nodes.cpp Removed code formatting modelines. 4 years ago
nodes.h Removed code formatting modelines. 4 years ago
nodes2string.cpp
number_object.cpp
number_object.h Removed code formatting modelines. 4 years ago
object.cpp
object.h Removed code formatting modelines. 4 years ago
object_object.cpp
object_object.h Removed code formatting modelines. 4 years ago
operations.cpp Removed code formatting modelines. 4 years ago
operations.h Removed code formatting modelines. 4 years ago
property_map.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
property_map.h Removed code formatting modelines. 4 years ago
reference.cpp
reference.h
reference_list.cpp
reference_list.h Removed code formatting modelines. 4 years ago
regexp.cpp
regexp.h
regexp_object.cpp
regexp_object.h Removed code formatting modelines. 4 years ago
scope_chain.cpp
scope_chain.h
simple_number.h
string_object.cpp Fixed more uncrustify's code formatting offending files. 4 years ago
string_object.h
test.js
testkjs.cpp Removed code formatting modelines. 4 years ago
types.h Removed code formatting modelines. 4 years ago
ustring.cpp
ustring.h
value.cpp Fixed some uncrustify's code formatting offending files. 4 years ago
value.h

README

This library provides an ECMAScript compatible interpreter. The ECMA standard
is based on well known scripting languages such as Netscape's JavaScript and
Microsoft's JScript.

I'm currently pursuing to be compliant with Edition 3 of ECMA-262. Postscript
and pdf versions of the standard are available at:

http://www.ecma-international.org/publications/files/ecma-st/Ecma-262.pdf
for PDF and
http://www.ecma-international.org/publications/standards/Ecma-262.htm
for the standard page.

About 95% of the required features should be covered by now. Note that this
number covers the core language elements only. Features like the famous
roll-over buttons on the www are NOT part of the standard. Those extensions
are added via a module loaded dynamically by the TDEHTML Widget.

I'll provide some examples of how to extend this library for various needs at
a later point in time. Feel free to contact me via mail if you have any
questions on how to provide scripting capabilities for your application.

A debugger is being worked on.

Bug reports, patches or feedback of any kind is very welcome.

Harri Porten <porten@kde.org>