1. 11 3月, 2021 1 次提交
  2. 09 9月, 2020 1 次提交
  3. 16 12月, 2016 2 次提交
    • T
      Add parameter names to function declarations. (#1498) · 65c32f6a
      Tilmann Scheller 提交于
      It's generally considered a bad programming practice to have function declarations without parameter names.
      
      This is another legacy from the early days of the project. Fix in one go to minimize history disruption.
      
      Used a custom clang-tidy check to create the bulk of the change.
      
      JerryScript-DCO-1.0-Signed-off-by: Tilmann Scheller t.scheller@samsung.com
      65c32f6a
    • T
      Remove redundant extern keywords from function declarations/definitions. (#1495) · 1e99be90
      Tilmann Scheller 提交于
      Extern keywords on function declarations/definitions provide no additional value since function declarations/definitions default to external linkage in C99, e.g. removing them won't change the semantics of the program.
      
      The extern keywords were essentially a legacy from the early days of the project. This commit cleans this up across the whole codebase in one go to minimize history disruption.
      
      The bulk of the changes in this commit were produced by a custom clang-tidy checker.
      
      Note that variables declarations carrying the extern keyword are untouched by this commit since there the presence of the keyword actually has an impact on the semantics of the program.
      
      JerryScript-DCO-1.0-Signed-off-by: Tilmann Scheller t.scheller@samsung.com
      1e99be90
  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. 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
  6. 28 9月, 2015 1 次提交
  7. 19 4月, 2015 1 次提交
  8. 18 2月, 2015 1 次提交
  9. 14 2月, 2015 1 次提交
  10. 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
  11. 09 2月, 2015 1 次提交
    • R
      Reverting changes related to on-stack GC-root introduction (except of passing... · ba348831
      Ruben Ayrapetyan 提交于
      Reverting changes related to on-stack GC-root introduction (except of passing ecma_value_t by const reference).
      
      This reverts commits:
           31e1405f39d72f8b885e92256b0dc29ecab1a99,
           7cb43840b59c539d9b043990ed658ae15a9defc3,
           1ab57a4493689806035a9853b0030cc6fea65590,
           c24b511ca60587e0db12d46a7e7567c86c3649bc,
           b2caf3e8b31b4b6b16499108ee3aabdcb94f0717,
           44f9c307fb6204bfd2181b19a9d94cabddf04de9.
      ba348831
  12. 31 1月, 2015 2 次提交
  13. 24 1月, 2015 1 次提交
  14. 20 10月, 2014 1 次提交
  15. 19 9月, 2014 1 次提交
  16. 18 9月, 2014 1 次提交
  17. 29 8月, 2014 1 次提交
  18. 18 8月, 2014 1 次提交
  19. 11 8月, 2014 3 次提交
  20. 07 8月, 2014 1 次提交
  21. 30 7月, 2014 1 次提交
  22. 23 7月, 2014 1 次提交
  23. 22 7月, 2014 1 次提交
  24. 21 7月, 2014 1 次提交
  25. 18 7月, 2014 1 次提交
  26. 15 7月, 2014 1 次提交
    • R
      Renaming ecma_Object_t::u_Attributes to u. · 4395da05
      Ruben Ayrapetyan 提交于
      Renaming ecma_CompletionValue_t:: completion_type to type, completion_value to value.
      Introducing ECMA_TARGET_ID_RESERVED value of ecma_CompletionValue_t::target when it is unused.
      Adding ecma_Reference_t type for ECMA-reference.
      Introducing some constructors and helpers for ecma-values.
      Introducing ecma_FindNamedProperty helper.
      Removing ecma_SyntacticReference_t type.
      Implementing ecma operation GetIdentifierReference.
      Stubs and partial implementation for GetValue, SetValue, lexical environment operations (HasBinding, etc.).
      4395da05
  27. 10 7月, 2014 1 次提交
  28. 03 7月, 2014 1 次提交
  29. 02 7月, 2014 3 次提交
  30. 01 7月, 2014 1 次提交