Skip to content
This repository has been archived by the owner on Jan 11, 2021. It is now read-only.

Fix of a bug that happens when the user defines prototype functions for Array #729

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Jan 10, 2018

  1. Fix of an issue of having prototype Array function definitions. In th…

    …is case the original code would go through all those functions and treat them as parameters, rather than working only on the actual content of an array. For example, having Array.prototype.last = function(){... defined would result in one of the elements of sharedParameters to represent that function, which in turn would lead to a problem on line 329 since for such a parameter, param.schema would be undefined
    andreyyudin committed Jan 10, 2018
    Configuration menu
    Copy the full SHA
    0e4cafa View commit details
    Browse the repository at this point in the history
  2. Style consistency

    andreyyudin committed Jan 10, 2018
    Configuration menu
    Copy the full SHA
    eed577a View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2019

  1. Added a comment explaining the choice of the for loop to avoid possib…

    …le rollbacks to the old code.
    andreyyudin committed Jan 15, 2019
    Configuration menu
    Copy the full SHA
    d2ae5e3 View commit details
    Browse the repository at this point in the history