Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 8af4fde

Browse files
committed
add($compile): add compiler v2.0 - not connected
1 parent 5001c1a commit 8af4fde

10 files changed

+2001
-554
lines changed

src/Angular.js

+38
Original file line numberDiff line numberDiff line change
@@ -626,6 +626,22 @@ function copy(source, destination){
626626
return destination;
627627
}
628628

629+
/**
630+
* Create a shallow copy of an object
631+
* @param src
632+
*/
633+
function shallowCopy(src) {
634+
var dst = {},
635+
key;
636+
for(key in src) {
637+
if (src.hasOwnProperty(key)) {
638+
dst[key] = src[key];
639+
}
640+
}
641+
return dst;
642+
}
643+
644+
629645
/**
630646
* @ngdoc function
631647
* @name angular.equals
@@ -750,6 +766,19 @@ function toBoolean(value) {
750766
return value;
751767
}
752768

769+
/**
770+
* @returns {string} Returns the string representation of the element.
771+
*/
772+
function startingTag(element) {
773+
element = jqLite(element).clone();
774+
try {
775+
// turns out IE does not let you set .html() on elements which
776+
// are not allowed to have children. So we just ignore it.
777+
element.html('');
778+
} catch(e) {};
779+
return jqLite('<div>').append(element).html().replace(/\<\/[\w\:\-]+\>$/, '');
780+
}
781+
753782

754783
/////////////////////////////////////////////////
755784

@@ -918,6 +947,14 @@ function bootstrap(element, modules) {
918947
return injector;
919948
}
920949

950+
var SNAKE_CASE_REGEXP = /[A-Z]/g;
951+
function snake_case(name, separator){
952+
separator = separator || '_';
953+
return name.replace(SNAKE_CASE_REGEXP, function(letter, pos) {
954+
return (pos ? separator : '') + letter.toLowerCase();
955+
});
956+
}
957+
921958
function bindJQuery() {
922959
// bind to jQuery if present;
923960
jQuery = window.jQuery;
@@ -951,6 +988,7 @@ function assertArg(arg, name, reason) {
951988
}
952989

953990
function assertArgFn(arg, name) {
991+
assertArg(arg, name);
954992
assertArg(isFunction(arg), name, 'not a function, got ' +
955993
(typeof arg == 'object' ? arg.constructor.name || 'Object' : typeof arg));
956994
return arg;

src/angular-mocks.js

+5-7
Original file line numberDiff line numberDiff line change
@@ -684,19 +684,17 @@ angular.mock.dump = function(object) {
684684
*
685685
* <pre>
686686
// controller
687-
function MyController($http) {
688-
var scope = this;
689-
687+
function MyController($scope, $http) {
690688
$http.get('/auth.py').success(function(data) {
691-
scope.user = data;
689+
$scope.user = data;
692690
});
693691
694692
this.saveMessage = function(message) {
695-
scope.status = 'Saving...';
693+
$scope.status = 'Saving...';
696694
$http.post('/add-msg.py', message).success(function(response) {
697-
scope.status = '';
695+
$scope.status = '';
698696
}).error(function() {
699-
scope.status = 'ERROR!';
697+
$scope.status = 'ERROR!';
700698
});
701699
};
702700
}

src/jqLite.js

+18-4
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,27 @@ function getStyle(element) {
100100
}
101101

102102

103+
var SPECIAL_CHARS_REGEXP = /([\:\-\_]+(.))/g;
104+
var PREFIX_REGEXP = /^(x[\:\-_]|data[\:\-_])/i;
105+
var MOZ_HACK_REGEXP = /^moz([A-Z])/;
103106
/**
104-
* Converts dash-separated names to camelCase. Useful for dealing with css properties.
107+
* Converts all accepted directives format into proper directive name.
108+
* All of these will become 'myDirective':
109+
* my:DiRective
110+
* my-directive
111+
* x-my-directive
112+
* data-my:directive
113+
*
114+
* Also there is special case for Moz prefix starting with upper case letter.
115+
* @param name Name to normalize
105116
*/
106117
function camelCase(name) {
107-
return name.replace(/\-(\w)/g, function(all, letter, offset){
108-
return (offset == 0 && letter == 'w') ? 'w' : letter.toUpperCase();
109-
});
118+
return name.
119+
replace(PREFIX_REGEXP, '').
120+
replace(SPECIAL_CHARS_REGEXP, function(_, separator, letter, offset) {
121+
return offset ? letter.toUpperCase() : letter;
122+
}).
123+
replace(MOZ_HACK_REGEXP, 'Moz$1');
110124
}
111125

112126
/////////////////////////////////////////////

0 commit comments

Comments
 (0)