mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
updating tests for named functions
This commit is contained in:
2
test/fixtures/generation/each.js
vendored
2
test/fixtures/generation/each.js
vendored
@@ -2,7 +2,7 @@
|
||||
|
||||
// The cornerstone, an each implementation.
|
||||
// Handles objects implementing forEach, arrays, and raw objects.
|
||||
_.each = function(obj, iterator, context) {
|
||||
_.each = function each(obj, iterator, context) {
|
||||
var __a, __b, __c, __d, __e, __f, __g, __h, i, index, item, key;
|
||||
index = 0;
|
||||
try {
|
||||
|
||||
2
test/fixtures/generation/each_no_wrap.js
vendored
2
test/fixtures/generation/each_no_wrap.js
vendored
@@ -1,7 +1,7 @@
|
||||
|
||||
// The cornerstone, an each implementation.
|
||||
// Handles objects implementing forEach, arrays, and raw objects.
|
||||
_.each = function(obj, iterator, context) {
|
||||
_.each = function each(obj, iterator, context) {
|
||||
var __a, __b, __c, __d, __e, __f, __g, __h, i, index, item, key;
|
||||
index = 0;
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user