Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: chrome/third_party/mock4js/mock4js.js

Issue 347283004: Convert mock4js line endings to LF. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/third_party/mock4js/examples/PublisherTest.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * Mock4JS 0.2 2 * Mock4JS 0.2
3 * http://mock4js.sourceforge.net/ 3 * http://mock4js.sourceforge.net/
4 */ 4 */
5 5
6 Mock4JS = { 6 Mock4JS = {
7 _mocksToVerify: [], 7 _mocksToVerify: [],
8 _convertToConstraint: function(constraintOrValue) { 8 _convertToConstraint: function(constraintOrValue) {
9 if(constraintOrValue.argumentMatches) { 9 if(constraintOrValue.argumentMatches) {
10 return constraintOrValue; // it's already an ArgumentMat cher 10 return constraintOrValue; // it's already an ArgumentMat cher
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 616
617 _describeMockSetup: function() { 617 _describeMockSetup: function() {
618 var msg = "\nAllowed:"; 618 var msg = "\nAllowed:";
619 for(var i=0; i<this._expectedInvocations.length; i++) { 619 for(var i=0; i<this._expectedInvocations.length; i++) {
620 var expectedInvocation = this._expectedInvocations[i]; 620 var expectedInvocation = this._expectedInvocations[i];
621 msg += "\n" + expectedInvocation.describe(); 621 msg += "\n" + expectedInvocation.describe();
622 } 622 }
623 return msg; 623 return msg;
624 } 624 }
625 } 625 }
OLDNEW
« no previous file with comments | « chrome/third_party/mock4js/examples/PublisherTest.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698