Skip to content

Commit

Permalink
renamed #11
Browse files Browse the repository at this point in the history
  • Loading branch information
glathoud committed Jul 10, 2018
1 parent ee67544 commit 2ce2eff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions fext.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ var global, exports
// Convenience (esp. for `meth`)
ret.getImpl = debug ? null : getImpl;

ret.getImplEval = debug
ret.getEvalImpl = debug
? function () { return ret; }
: function () { return '(' + getImpl() + ')'; }
;
Expand Down Expand Up @@ -925,7 +925,7 @@ var global, exports
: f_or_s
;
meth_wrapper_dbg.getImpl = null;
meth_wrapper_dbg.getImplEval = function () {
meth_wrapper_dbg.getEvalImpl = function () {
return meth_wrapper_dbg;
};

Expand Down Expand Up @@ -1051,7 +1051,7 @@ var global, exports
o[ name ].getImpl = debug
? null : meth_mfun.getImpl;

o[ name ].getImplEval = debug
o[ name ].getEvalImpl = debug
? function () { return o[ name ].bind( o ); }
: function () { return '(' + o[ name ].getImpl() + ')'; };
}
Expand Down
4 changes: 2 additions & 2 deletions lib/sorted_search.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ var global, exports;
// Now we can implement them, using evil access to the local
// lexical scope so that we do not need to write parameters
// repeatedly 5 times (see above `function sortedSearch(...)`).
improveFirst = eval( improveFirst.getImplEval() );
improveLast = eval( improveLast.getImplEval() );
improveFirst = eval( improveFirst.getEvalImpl() );
improveLast = eval( improveLast.getEvalImpl() );

var first_found
, last_found
Expand Down

0 comments on commit 2ce2eff

Please sign in to comment.