File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -12667,7 +12667,6 @@ describe('document', function() {
12667
12667
return 'I am baseNestedDiscriminated' ;
12668
12668
}
12669
12669
}
12670
- BaseClass . type = 1 ;
12671
12670
12672
12671
baseNestedDiscriminated . loadClass ( BaseClass ) ;
12673
12672
@@ -12676,14 +12675,12 @@ describe('document', function() {
12676
12675
return 'I am NumberTyped' ;
12677
12676
}
12678
12677
}
12679
- NumberTyped . type = 3 ;
12680
12678
12681
12679
class StringTyped extends BaseClass {
12682
12680
whoAmI ( ) {
12683
12681
return 'I am StringTyped' ;
12684
12682
}
12685
12683
}
12686
- StringTyped . type = 4 ;
12687
12684
12688
12685
const containsNestedSchema = new Schema ( {
12689
12686
nestedDiscriminatedTypes : { type : [ baseNestedDiscriminated ] , required : true }
@@ -12718,7 +12715,6 @@ describe('document', function() {
12718
12715
return 'I am baseNestedDiscriminated' ;
12719
12716
}
12720
12717
}
12721
- BaseClass . type = 1 ;
12722
12718
12723
12719
baseNestedDiscriminated . loadClass ( BaseClass ) ;
12724
12720
@@ -12727,14 +12723,12 @@ describe('document', function() {
12727
12723
return 'I am NumberTyped' ;
12728
12724
}
12729
12725
}
12730
- NumberTyped . type = 3 ;
12731
12726
12732
12727
class StringTyped extends BaseClass {
12733
12728
whoAmI ( ) {
12734
12729
return 'I am StringTyped' ;
12735
12730
}
12736
12731
}
12737
- StringTyped . type = 4 ;
12738
12732
12739
12733
const containsNestedSchema = new Schema ( {
12740
12734
nestedDiscriminatedTypes : { type : [ baseNestedDiscriminated ] , required : true }
You can’t perform that action at this time.
0 commit comments