Merge remote-tracking branch 'origin/master' into 2.3.0

This commit is contained in:
wing328
2017-07-09 00:59:41 +08:00
59 changed files with 2392 additions and 91 deletions

View File

@@ -259,7 +259,7 @@ let _double = 1.2; // Number | None
let patternWithoutDelimiter = "patternWithoutDelimiter_example"; // String | None
let _byte = B; // Blob | None
let _byte = _byte_example; // Blob | None
let opts = {
'integer': 56, // Number | None

View File

@@ -24,7 +24,7 @@ import Animal from './Animal';
* @module model/AnimalFarm
* @version 1.0.0
*/
export default class AnimalFarm {
export default class AnimalFarm extends Array {
/**
* Constructs a new <code>AnimalFarm</code>.
* @alias module:model/AnimalFarm
@@ -34,8 +34,8 @@ export default class AnimalFarm {
constructor() {
this = new Array();
Object.setPrototypeOf(this, AnimalFarm);
super();