Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jerryscript-project/jerryscript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 193ad5ee4506e75a956b9538fb882f4fffdea712
Choose a base ref
...
head repository: jerryscript-project/jerryscript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 77df022468304d8f901a89baf559b9a0728071f4
Choose a head ref
  • 16 commits
  • 35 files changed
  • 5 contributors

Commits on May 27, 2015

  1. Implemented Array.prototype.every()

    JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai [email protected]
    dbatyai committed May 27, 2015
    Configuration menu
    Copy the full SHA
    b049998 View commit details
    Browse the repository at this point in the history
  2. Implemented Array.prototype.reverse()

    JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai [email protected]
    dbatyai committed May 27, 2015
    Configuration menu
    Copy the full SHA
    0ef0b0d View commit details
    Browse the repository at this point in the history
  3. Fix test search in run-test-pass.sh

    Using the find program with an argument "*" could lead to problems.
    If there are ".js" files in the executing directory then the
    shell replaces the asterisk with that filenames.
    
    The fix is simple: quote the argument which has the asterisk.
    
    JerryScript-DCO-1.0-Signed-off-by: Peter Gal [email protected]
    galpeter committed May 27, 2015
    Configuration menu
    Copy the full SHA
    e5e876c View commit details
    Browse the repository at this point in the history
  4. Implement Object.prototype.propertyIsEnumerable().

    JerryScript-DCO-1.0-Signed-off-by: Zsolt Borbély [email protected]
    Zsolt Borbély authored and galpeter committed May 27, 2015
    Configuration menu
    Copy the full SHA
    b0d4acd View commit details
    Browse the repository at this point in the history
  5. Implement Array.prototype.splice().

    JerryScript-DCO-1.0-Signed-off-by: Zsolt Borbély [email protected]
    Zsolt Borbély authored and galpeter committed May 27, 2015
    Configuration menu
    Copy the full SHA
    dd94064 View commit details
    Browse the repository at this point in the history
  6. Implemented Array.prototype.concat()

    JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai [email protected]
    JerryScript-DCO-1.0-Signed-off-by: Szilard Ledan [email protected]
    szledan authored and dbatyai committed May 27, 2015
    Configuration menu
    Copy the full SHA
    cf70fc2 View commit details
    Browse the repository at this point in the history
  7. Implement Array.prototoype.toLocaleString()

    JerryScript-DCO-1.0-Signed-off-by: Peter Gal [email protected]
    galpeter committed May 27, 2015
    Configuration menu
    Copy the full SHA
    aaeec7f View commit details
    Browse the repository at this point in the history

Commits on May 28, 2015

  1. Implemented Array.prototype.filter()

    JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai [email protected]
    dbatyai committed May 28, 2015
    Configuration menu
    Copy the full SHA
    3329583 View commit details
    Browse the repository at this point in the history
  2. Fix property lookup in Object.getOwnPropertyDescriptor.

    The ecma_op_general_object_get_own_property call does not find all
    properties, we need to use the ecma_op_object_get_own_property method
    for correct property lookup.
    
    JerryScript-DCO-1.0-Signed-off-by: Peter Gal [email protected]
    galpeter committed May 28, 2015
    Configuration menu
    Copy the full SHA
    c3f9169 View commit details
    Browse the repository at this point in the history
  3. Update of several 'vm' component interfaces naming.

     init_int -> vm_init;
     run_int -> vm_run_global;
     run_int_loop -> vm_loop;
     run_int_from_pos -> vm_run_from_pos;
     read_opcode -> vm_get_opcode.
    
    JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
    Ruben Ayrapetyan committed May 28, 2015
    Configuration menu
    Copy the full SHA
    3a9bf24 View commit details
    Browse the repository at this point in the history
  4. Fix of 'strict mode' meta type handling in opfunc_meta.

    JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
    Ruben Ayrapetyan committed May 28, 2015
    Configuration menu
    Copy the full SHA
    e984bc3 View commit details
    Browse the repository at this point in the history
  5. Introducing 'scope flags' opcode containing set of flags that indicat…

    …e various properties of a scope; replacing 'strict mode' meta opcode with a flag in the flags set.
    
    JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
    Ruben Ayrapetyan committed May 28, 2015
    Configuration menu
    Copy the full SHA
    cb600da View commit details
    Browse the repository at this point in the history
  6. Adding scope's code flags indicating whether the scope's code referen…

    …ce 'arguments' and 'eval' identifiers.
    
    JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
    Ruben Ayrapetyan committed May 28, 2015
    Configuration menu
    Copy the full SHA
    b1a31c8 View commit details
    Browse the repository at this point in the history
  7. Introducing a function object's flag indicating whether Arguments obj…

    …ect should be instantiated upon call of the function.
    
     The Arguments object is supposed to be unnecessary if function's code:
      - doesn't reference 'arguments' identifier;
      - doesn't reference 'eval' identifier (so, it doesn't perform direct call to eval).
    
    JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
    Ruben Ayrapetyan committed May 28, 2015
    Configuration menu
    Copy the full SHA
    ed4ff8e View commit details
    Browse the repository at this point in the history
  8. Instantiation of Arguments object.

    JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
    Ruben Ayrapetyan committed May 28, 2015
    Configuration menu
    Copy the full SHA
    d4537eb View commit details
    Browse the repository at this point in the history
  9. Adding jerry-test-suite tests on Arguments object to precommit testin…

    …g and removing them from unsupported list.
    
    JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
    Ruben Ayrapetyan committed May 28, 2015
    Configuration menu
    Copy the full SHA
    77df022 View commit details
    Browse the repository at this point in the history
Loading