Skip to content

Commit

Permalink
Added return statements to modules, previously not returning their ex…
Browse files Browse the repository at this point in the history
…port.
  • Loading branch information
Joscha Rohmann authored and Kanaye committed Dec 2, 2016
1 parent 2f643c0 commit eee38e3
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/dataSource/DataSource.js
Expand Up @@ -325,4 +325,5 @@
]);

blocks.core.applyExpressions('array', blocks.DataSource.prototype, blocks.toObject([/*'remove', 'removeAt', 'removeAll', 'add',*/ 'size', 'at', 'isEmpty', 'each']));
return DataSource;
});
1 change: 1 addition & 0 deletions src/modules/Request.js
Expand Up @@ -195,4 +195,5 @@
}
}
};
return Request;
});
1 change: 1 addition & 0 deletions src/mvc/Application.js
Expand Up @@ -488,4 +488,5 @@ define([
return this;
}
};
return Application;
});
1 change: 1 addition & 0 deletions src/mvc/Model.js
Expand Up @@ -392,4 +392,5 @@ define([
return value && value.prototype && value.prototype.__Class__ == Model;
});
// @endif
return Model;
});
1 change: 1 addition & 0 deletions src/mvc/Property.js
Expand Up @@ -56,4 +56,5 @@

return this;
};
return Property;
});
1 change: 1 addition & 0 deletions src/mvc/View.js
Expand Up @@ -241,4 +241,5 @@ define([
return false;
});
} /* @endif */
return View;
});
1 change: 1 addition & 0 deletions src/node/BrowserEnv.js
Expand Up @@ -77,4 +77,5 @@ define([
};
}
};
return BrowserEnv;
});
2 changes: 2 additions & 0 deletions src/node/Middleware.js
Expand Up @@ -114,4 +114,6 @@ define([
return req.protocol + '://' + req.get('host') + req.originalUrl;
}
};

return Middleware;
});
1 change: 1 addition & 0 deletions src/node/Server.js
Expand Up @@ -45,4 +45,5 @@ define([
});
}
};
return Server;
});
2 changes: 2 additions & 0 deletions src/node/ServerEnv.js
Expand Up @@ -86,4 +86,6 @@ define([
};

Events.register(ServerEnv.prototype, ['on', 'once', 'off', 'trigger']);

return ServerEnv;
});
1 change: 1 addition & 0 deletions src/query/ChunkManager.js
Expand Up @@ -183,4 +183,5 @@ define([
chunkLength);
}
};
return ChunkManager;
});

0 comments on commit eee38e3

Please sign in to comment.