1. 11 3月, 2021 1 次提交
  2. 09 9月, 2020 1 次提交
  3. 09 4月, 2019 1 次提交
    • P
      Rework usages/naming of configuration macros [part 1] (#2793) · 40f7b1c2
      Péter Gál 提交于
      There are quite a few configuration macros in the project.
      As discussed in the #2520 issue there are a few awkward constructs.
      
      Main changes:
      
      * Renamed all CONFIG_DISABLE_<name>_BUILTIN macro to JERRY_BUILTIN_<name> format.
      * The special JERRY_BUILTINS macro specifies the basic config for all es5.1 builtins.
      * Renamed all CONFIG_DISABLE_ES2015_<name> to JERRY_ES2015_<name> format.
      * The special JERRY_ES2015 macro specifies the basic config for all es2015 builtins.
      * Renamed UNICODE_CASE_CONVERSION to JERRY_UNICODE_CASE_CONVERSION.
      * Renamed ENABLE_REGEXP_STRICT_MODE to JERRY_REGEXP_STRICT_MODE.
      * All options (in this change) can have a value of 0 or 1.
      * Renamed ENABLE_REGEXP_STRICT_MODE to JERRY_REGEXP_STRICT_MODE.
        JERRY_REGEXP_STRICT_MODE is set to 0 by default.
      * Reworked CONFIG_ECMA_NUMBER_TYPE macro to JERRY_NUMBER_TYPE_FLOAT64 name and now
        it uses the value 1 for 64 bit floating point numbers and 0 for 32 bit floating point
        number.
        By default the 64-bit floating point number mode is enabled.
      * All new JERRY_ defines can be used wit the `#if ENABLED (JERRY_...)` construct to
        test if the feature is enabled or not.
      * Added/replaced a few config.h includes to correctly propagate the macro values.
      * Added sanity checks for each macro to avoid incorrectly set values.
      * Updated profile documentation.
      * The CMake feature names are not updated at this point.
      
      JerryScript-DCO-1.0-Signed-off-by: Peter Gal pgal.u-szeged@partner.samsung.com
      40f7b1c2
  4. 08 12月, 2016 1 次提交
    • T
      Streamline copyright notices across the codebase. (#1473) · 0511091e
      Tilmann Scheller 提交于
      Since the project is now hosted at the JS Foundation we can move to unified copyright notices for the project.
      
      Starting with this commit all future contributions to the project should only carry the following copyright notice (except for third-party code which requires copyright information to be preserved):
      
      "Copyright JS Foundation and other contributors, http://js.foundation" (without the quotes)
      
      This avoids cluttering the codebase with contributor-specific copyright notices which have a higher maintenance overhead and tend to get outdated quickly. Also dropping the year from the copyright notices helps to avoid yearly code changes just to update the copyright notices.
      
      Note that each contributor still retains full copyright ownership of his/her contributions and the respective authorship is tracked very accurately via Git.
      
      JerryScript-DCO-1.0-Signed-off-by: Tilmann Scheller t.scheller@samsung.com
      0511091e
  5. 05 8月, 2016 1 次提交
    • R
      Remove compact profile. · f15e7bea
      Robert Sipka 提交于
      The standard doesn't defines ECMAScript Compact Profile as a subset of Ecma-262 Edition 5.1.
      Profile modes can be added easily like the minimal profile if required.
      
      JerryScript-DCO-1.0-Signed-off-by: Robert Sipka rsipka.uszeged@partner.samsung.com
      f15e7bea
  6. 22 4月, 2016 1 次提交
  7. 17 2月, 2016 1 次提交
    • Z
      Remove 'ecma_completion_value_t' · b2426a7a
      Zoltan Herczeg 提交于
      Remove ecma_completion_value_t, and add an extra bit to
      ecma_value_t to represent errors. From the long list of
      completion types only normal and error remained.
      
      JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
      JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
      b2426a7a
  8. 15 2月, 2016 1 次提交
    • R
      Remove g++ support from the [C]Make files. · 977bfa5d
      Robert Sipka 提交于
      Move all '.cpp' files to '.c'.
      Rename comments from 'cpp' to 'c'.
      
      JerryScript-DCO-1.0-Signed-off-by: Roland Takacs rtakacs.u-szeged@partner.samsung.com
      JerryScript-DCO-1.0-Signed-off-by: Robert Sipka rsipka.uszeged@partner.samsung.com
      977bfa5d
  9. 14 5月, 2015 1 次提交
  10. 09 5月, 2015 1 次提交
  11. 18 2月, 2015 1 次提交
  12. 14 2月, 2015 1 次提交
  13. 11 2月, 2015 1 次提交
    • R
      Refinement of project structure. · 718bbe26
      Ruben Ayrapetyan 提交于
       - components renaming and moving:
         - liballocator -> mem;
         - libcoreint -> vm;
         - libecmaobjects -> ecma/base;
         - libecmaoperations -> ecma/operations;
         - libecmabuiltins -> ecma/builtins;
         - libjsparser -> parser/js;
         - libintstructs -> parser/collections;
         - liboptimizer -> parser/js;
         - libperipherals -> ../plugins/lib_device_stm;
         - libruntime -> jrt;
       - generated.h now is created as intermediate during build;
       - benchmarks -> tests/benchmarks;
       - docs -> documentation;
       - demo-applications removed (loop_demo.js -> tests/blinky.js).
      718bbe26
  14. 09 2月, 2015 2 次提交
  15. 04 2月, 2015 1 次提交
  16. 31 1月, 2015 2 次提交
  17. 28 1月, 2015 1 次提交
  18. 24 1月, 2015 1 次提交
  19. 27 11月, 2014 1 次提交
  20. 14 11月, 2014 1 次提交
  21. 31 10月, 2014 1 次提交
    • R
      Providing cp_minimal build mode. · 05cf2dbe
      Ruben Ayrapetyan 提交于
      In the mode built-in objects except Global, Object, Object.prototype, Function,
      Function.prototype, [[ThrowTypeError]] and CompactProfileError are disabled.
      
      Making default builds (without cp cp_minimal modes set) to not define CONFIG_ECMA_COMPACT_PROFILE.
      Removing some tests that depend on 'eval'-like functionality or CompactProfileError built-in from pre-commit testing.
      05cf2dbe
  22. 30 10月, 2014 2 次提交
  23. 29 10月, 2014 1 次提交