Avoid circular dependency in createCallback and get Curl modularize tests working.

Former-commit-id: cf33217163f2c809fe8ddbb9debd7c95b002b8dc
This commit is contained in:
John-David Dalton
2013-07-14 12:39:50 -07:00
parent 8679377fcf
commit 3048ac2f6d
4 changed files with 54 additions and 52 deletions

View File

@@ -338,8 +338,8 @@
'value'
];
// minify `iteratorObject.keys`
source = source.replace(/\b(iteratorObject(?:\.|\['))keys\b/g, function(match, prelude) {
// minify `dependencyObject` properties
source = source.replace(/\b(dependencyObject(?:\.|\['))\w+/g, function(match, prelude) {
return prelude + minNames[iteratorOptions.length + props.length];
});