Git commit f7477f817055726f79f9ade8ca81dd67c551e613 by Christoph Cullmann. Committed on 03/05/2023 at 17:35. Pushed by cullmann into branch 'master'.
Removed for KF6, the 'kf5' branch contains the last maintained state. D +0 -28 .gitignore D +0 -7 .gitlab-ci.yml D +0 -8 .kde-ci.yml D +0 -88 CMakeLists.txt D +0 -510 COPYING.LIB D +0 -9 KF5JSConfig.cmake.in M +1 -6 README.md D +0 -50 autotests/CMakeLists.txt D +0 -402 autotests/ecmatest.cpp D +0 -31 autotests/ecmatest.h D +0 -11 autotests/ecmatest_broken_bestPractice D +0 -93 autotests/ecmatest_broken_ch07 D +0 -8 autotests/ecmatest_broken_ch08 D +0 -2 autotests/ecmatest_broken_ch09 D +0 -154 autotests/ecmatest_broken_ch10 D +0 -139 autotests/ecmatest_broken_ch11 D +0 -51 autotests/ecmatest_broken_ch12 D +0 -81 autotests/ecmatest_broken_ch13 D +0 -12 autotests/ecmatest_broken_ch14 D +0 -15 autotests/ecmatest_broken_ch15.1 D +0 -26 autotests/ecmatest_broken_ch15.10 D +0 -0 autotests/ecmatest_broken_ch15.11 D +0 -0 autotests/ecmatest_broken_ch15.12 D +0 -50 autotests/ecmatest_broken_ch15.2 D +0 -87 autotests/ecmatest_broken_ch15.3 D +0 -98 autotests/ecmatest_broken_ch15.4 D +0 -21 autotests/ecmatest_broken_ch15.5 D +0 -0 autotests/ecmatest_broken_ch15.6 D +0 -0 autotests/ecmatest_broken_ch15.7 D +0 -0 autotests/ecmatest_broken_ch15.8 D +0 -49 autotests/ecmatest_broken_ch15.9 D +0 -285 autotests/kjsapitest.cpp D +0 -13 autotests/updateBroken.sh D +0 -44 cmake/FindPCRE.cmake D +0 -1 docs/CMakeLists.txt D +0 -1 docs/kjs5/CMakeLists.txt D +0 -128 docs/kjs5/man-kjs5.1.docbook D +0 -3 src/CMakeLists.txt D +0 -27 src/README D +0 -22 src/kjs-devel-gdb D +0 -325 src/kjs/CMakeLists.txt D +0 -49 src/kjs/CommonIdentifiers.cpp D +0 -118 src/kjs/CommonIdentifiers.h D +0 -301 src/kjs/CompileState.cpp D +0 -423 src/kjs/CompileState.h D +0 -65 src/kjs/ConfigureChecks.cmake D +0 -110 src/kjs/DESIGN.ideas D +0 -307 src/kjs/ExecState.cpp D +0 -380 src/kjs/ExecState.h D +0 -80 src/kjs/JSImmediate.cpp D +0 -336 src/kjs/JSImmediate.h D +0 -83 src/kjs/JSLock.cpp D +0 -90 src/kjs/JSLock.h D +0 -44 src/kjs/JSType.h D +0 -93 src/kjs/JSVariableObject.cpp D +0 -208 src/kjs/JSVariableObject.h D +0 -38 src/kjs/JSWrapperObject.cpp D +0 -96 src/kjs/JSWrapperObject.h D +0 -69 src/kjs/LocalStorage.h D +0 -151 src/kjs/Parser.cpp D +0 -112 src/kjs/Parser.h D +0 -36 src/kjs/PropertyNameArray.cpp D +0 -72 src/kjs/PropertyNameArray.h D +0 -83 src/kjs/SavedBuiltins.h D +0 -65 src/kjs/SymbolTable.h D +0 -7 src/kjs/THANKS D +0 -34 src/kjs/api/CMakeLists.txt D +0 -37 src/kjs/api/Mainpage.dox D +0 -40 src/kjs/api/kjsarguments.cpp D +0 -58 src/kjs/api/kjsarguments.h D +0 -58 src/kjs/api/kjscontext.cpp D +0 -70 src/kjs/api/kjscontext.h D +0 -248 src/kjs/api/kjsinterpreter.cpp D +0 -190 src/kjs/api/kjsinterpreter.h D +0 -248 src/kjs/api/kjsobject.cpp D +0 -293 src/kjs/api/kjsobject.h D +0 -67 src/kjs/api/kjsprivate.h D +0 -325 src/kjs/api/kjsprototype.cpp D +0 -133 src/kjs/api/kjsprototype.h D +0 -1021 src/kjs/array_instance.cpp D +0 -95 src/kjs/array_instance.h D +0 -778 src/kjs/array_object.cpp D +0 -77 src/kjs/array_object.h D +0 -129 src/kjs/bool_object.cpp D +0 -98 src/kjs/bool_object.h D +0 -1292 src/kjs/bytecode/codes.def D +0 -186 src/kjs/bytecode/generator/codeprinter.cpp D +0 -107 src/kjs/bytecode/generator/codeprinter.h D +0 -57 src/kjs/bytecode/generator/driver.cpp D +0 -117 src/kjs/bytecode/generator/filetemplate.h D +0 -6 src/kjs/bytecode/generator/generator.pro D +0 -222 src/kjs/bytecode/generator/lexer.cpp D +0 -158 src/kjs/bytecode/generator/lexer.h D +0 -377 src/kjs/bytecode/generator/parser.cpp D +0 -113 src/kjs/bytecode/generator/parser.h D +0 -466 src/kjs/bytecode/generator/tablebuilder.cpp D +0 -107 src/kjs/bytecode/generator/tablebuilder.h D +0 -291 src/kjs/bytecode/generator/types.cpp D +0 -137 src/kjs/bytecode/generator/types.h D +0 -268 src/kjs/bytecode/machine.cpp.in D +0 -43 src/kjs/bytecode/machine.h D +0 -99 src/kjs/bytecode/opargs.h D +0 -435 src/kjs/bytecode/opcodes.cpp.in D +0 -136 src/kjs/bytecode/opcodes.h.in D +0 -968 src/kjs/collector.cpp D +0 -214 src/kjs/collector.h D +0 -85 src/kjs/commonunicode.h D +0 -98 src/kjs/completion.h D +0 -4 src/kjs/context.h D +0 -274 src/kjs/create_hash_table D +0 -16 src/kjs/create_parser D +0 -1567 src/kjs/date_object.cpp D +0 -121 src/kjs/date_object.h D +0 -173 src/kjs/debugger.cpp D +0 -242 src/kjs/debugger.h D +0 -3304 src/kjs/dtoa.cpp D +0 -30 src/kjs/dtoa.h D +0 -180 src/kjs/error_object.cpp D +0 -102 src/kjs/error_object.h D +0 -88 src/kjs/fpconst.cpp D +0 -1256 src/kjs/function.cpp D +0 -286 src/kjs/function.h D +0 -317 src/kjs/function_object.cpp D +0 -68 src/kjs/function_object.h D +0 -131 src/kjs/global.h.cmake D +0 -4980 src/kjs/grammar.cpp D +0 -184 src/kjs/grammar.h D +0 -960 src/kjs/grammar.y D +0 -174 src/kjs/identifier.cpp D +0 -174 src/kjs/identifier.h D +0 -381 src/kjs/internal.cpp D +0 -158 src/kjs/internal.h D +0 -1059 src/kjs/interpreter.cpp D +0 -623 src/kjs/interpreter.h D +0 -193 src/kjs/json_object.cpp D +0 -58 src/kjs/json_object.h D +0 -664 src/kjs/jsonlexer.cpp D +0 -106 src/kjs/jsonlexer.h D +0 -435 src/kjs/jsonstringify.cpp D +0 -82 src/kjs/jsonstringify.h D +0 -72 src/kjs/keywords.table D +0 -304 src/kjs/kjs.cpp D +0 -1034 src/kjs/lexer.cpp D +0 -181 src/kjs/lexer.h D +0 -30 src/kjs/libkjs.map D +0 -327 src/kjs/list.cpp D +0 -287 src/kjs/list.h D +0 -97 src/kjs/lookup.cpp D +0 -430 src/kjs/lookup.h D +0 -329 src/kjs/makenodes.h D +0 -364 src/kjs/math_object.cpp D +0 -63 src/kjs/math_object.h D +0 -1200 src/kjs/nodes.cpp D +0 -1631 src/kjs/nodes.h D +0 -1709 src/kjs/nodes2bytecode.cpp D +0 -40 src/kjs/nodes2bytecode.h D +0 -908 src/kjs/nodes2string.cpp D +0 -623 src/kjs/number_object.cpp D +0 -123 src/kjs/number_object.h D +0 -914 src/kjs/object.cpp D +0 -699 src/kjs/object.h D +0 -499 src/kjs/object_object.cpp D +0 -89 src/kjs/object_object.h D +0 -245 src/kjs/operations.cpp D +0 -217 src/kjs/operations.h D +0 -51 src/kjs/package.cpp D +0 -95 src/kjs/package.h D +0 -849 src/kjs/property_map.cpp D +0 -181 src/kjs/property_map.h D +0 -38 src/kjs/property_slot.cpp D +0 -191 src/kjs/property_slot.h D +0 -304 src/kjs/propertydescriptor.cpp D +0 -104 src/kjs/propertydescriptor.h D +0 -175 src/kjs/protect.h D +0 -621 src/kjs/regexp.cpp D +0 -142 src/kjs/regexp.h D +0 -522 src/kjs/regexp_object.cpp D +0 -136 src/kjs/regexp_object.h D +0 -55 src/kjs/scope_chain.cpp D +0 -274 src/kjs/scope_chain.h D +0 -126 src/kjs/scriptfunction.h D +0 -1027 src/kjs/string_object.cpp D +0 -161 src/kjs/string_object.h D +0 -29 src/kjs/test.js D +0 -29 src/kjs/types.h D +0 -1568 src/kjs/ustring.cpp D +0 -609 src/kjs/ustring.h D +0 -276 src/kjs/value.cpp D +0 -769 src/kjs/value.h D +0 -257 src/wtf/ASCIICType.h D +0 -47 src/wtf/AlwaysInline.h D +0 -48 src/wtf/Assertions.h D +0 -43 src/wtf/CMakeLists.txt D +0 -74 src/wtf/DisallowCType.h D +0 -72 src/wtf/FastMalloc.h D +0 -44 src/wtf/Forward.h D +0 -34 src/wtf/GetPtr.h D +0 -210 src/wtf/HashCountedSet.h D +0 -246 src/wtf/HashFunctions.h D +0 -309 src/wtf/HashIterators.h D +0 -354 src/wtf/HashMap.h D +0 -286 src/wtf/HashSet.h D +0 -61 src/wtf/HashTable.cpp D +0 -1344 src/wtf/HashTable.h D +0 -215 src/wtf/HashTraits.h D +0 -81 src/wtf/ListRefPtr.h D +0 -18 src/wtf/Mainpage.dox D +0 -184 src/wtf/MathExtras.h D +0 -46 src/wtf/Noncopyable.h D +0 -119 src/wtf/OwnArrayPtr.h D +0 -112 src/wtf/OwnPtr.h D +0 -240 src/wtf/PassRefPtr.h D +0 -226 src/wtf/Platform.h D +0 -83 src/wtf/RefCounted.h D +0 -263 src/wtf/RefPtr.h D +0 -354 src/wtf/RefPtrHashMap.h D +0 -188 src/wtf/SharedPtr.h D +0 -29 src/wtf/UnusedParam.h D +0 -967 src/wtf/Vector.h D +0 -147 src/wtf/VectorTraits.h D +0 -37 src/wtf/unicode/Unicode.h D +0 -65 src/wtf/unicode/UnicodeCategory.h D +0 -160 src/wtf/unicode/libc/UnicodeLibC.h D +0 -141 src/wtf/unicode/qt4/UnicodeQt4.h D +0 -254 tests/Array.js D +0 -8 tests/Boolean.js D +0 -28 tests/CMakeLists.txt D +0 -353 tests/Date.js D +0 -11 tests/Error.js D +0 -75 tests/GlobalObject.js D +0 -1 tests/KNOWN_FAILURES D +0 -325 tests/Number.js D +0 -22 tests/Object.js D +0 -35 tests/Prototype.js D +0 -59 tests/README D +0 -257 tests/RegExp.js D +0 -135 tests/StringObject.js D +0 -49 tests/arguments-scope.js D +0 -12 tests/assignments.js D +0 -139 tests/break-finally.js D +0 -26 tests/caller-property.js D +0 -4 tests/cast.js D +0 -292 tests/codegen-temporaries.js D +0 -1 tests/comment-1.js D +0 -1 tests/comment-2.js D +0 -25 tests/completion.js D +0 -9 tests/conditional.js D +0 -66 tests/const.js D +0 -15 tests/constructor_length.js D +0 -8 tests/crash-1.js D +0 -10 tests/crash-2.js D +0 -4 tests/delete.js D +0 -0 tests/empty.js D +0 -350 tests/encode_decode_uri.js D +0 -32 tests/eval.js D +0 -5 tests/evil-n.js D +0 -197 tests/exception-sequencing.js D +0 -489 tests/exception_propagation.js D +0 -141 tests/exceptions.js D +0 -44 tests/func-decl.js D +0 -276 tests/function.js D +0 -127 tests/function_arguments.js D +0 -10 tests/function_constructor.js D +0 -130 tests/function_length.js D +0 -12 tests/function_name.js D +0 -1 tests/garbage-n.js D +0 -1 tests/ignore D +0 -95 tests/inbuilt_function_proto.js D +0 -193 tests/inbuilt_function_tostring.js D +0 -151 tests/iteration.js D +0 -2 tests/j-comment-3.js D +0 -1 tests/j-comment-4.js D +0 -57 tests/literals.js D +0 -51 tests/lval-exceptions.js D +0 -127 tests/math.js D +0 -389 tests/md5-1.js D +0 -220 tests/md5-2.js D +0 -37 tests/neg-index.js D +0 -172 tests/not-quite-reserved.html D +0 -77 tests/object_prototype.js D +0 -27 tests/object_prototype_tostring.js D +0 -313 tests/operators.js D +0 -14 tests/parse-backslash-before-newline.js D +0 -78 tests/parse.js D +0 -36 tests/prototype_length.js D +0 -10 tests/prototype_proto.js D +0 -95 tests/regexp-compile.html D +0 -39 tests/runsuite.sh D +0 -126 tests/scope.js D +0 -141 tests/sequencing.js D +0 -111 tests/shell.js D +0 -76 tests/statements.js D +0 -1 tests/string-1-n.js D +0 -2 tests/string-2-n.js D +0 -40 tests/string-includes.js D +0 -28 tests/string-repeat.js D +0 -82 tests/string-startend.js D +0 -75 tests/string-trim.js D +0 -395 tests/testkjs.cpp D +0 -22 tests/testotherbrowser.html D +0 -57 tests/tocode.js D +0 -160 tests/var_decl_init.js https://invent.kde.org/frameworks/kjs/commit/f7477f817055726f79f9ade8ca81dd67c551e613
