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

Commit d8c6653

Browse files
Basic generator tests
1 parent a32ca39 commit d8c6653

21 files changed

Lines changed: 740 additions & 23 deletions

dist/rx.all.compat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7407,7 +7407,7 @@ Rx.Observable.prototype.flatMapLatest = function(selector, resultSelector, thisA
74077407
var value = null;
74087408
var hasValue = false;
74097409
if (Observable.isObservable(obs)) {
7410-
g.add(value.subscribe(function(val) {
7410+
g.add(obs.subscribe(function(val) {
74117411
hasValue = true;
74127412
value = val;
74137413
}, onError, function() {

dist/rx.all.compat.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.compat.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7128,7 +7128,7 @@ Rx.Observable.prototype.flatMapLatest = function(selector, resultSelector, thisA
71287128
var value = null;
71297129
var hasValue = false;
71307130
if (Observable.isObservable(obs)) {
7131-
g.add(value.subscribe(function(val) {
7131+
g.add(obs.subscribe(function(val) {
71327132
hasValue = true;
71337133
value = val;
71347134
}, onError, function() {

dist/rx.all.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.async.compat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
var value = null;
119119
var hasValue = false;
120120
if (Observable.isObservable(obs)) {
121-
g.add(value.subscribe(function(val) {
121+
g.add(obs.subscribe(function(val) {
122122
hasValue = true;
123123
value = val;
124124
}, onError, function() {

dist/rx.async.compat.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.async.compat.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
var value = null;
119119
var hasValue = false;
120120
if (Observable.isObservable(obs)) {
121-
g.add(value.subscribe(function(val) {
121+
g.add(obs.subscribe(function(val) {
122122
hasValue = true;
123123
value = val;
124124
}, onError, function() {

0 commit comments

Comments
 (0)