Webpack build for branch master: 016526486c

This commit is contained in:
Travis CI 2018-02-02 00:43:34 +00:00
parent 37f5cd2bdf
commit 9c2df4a80b
2 changed files with 9 additions and 1 deletions

View file

@ -2317,6 +2317,14 @@ class Activity {
);
}
/**
* When concatenated with a string, this automatically returns the activities's name instead of the Activity object.
* @returns {string}
*/
toString() {
return this.name;
}
_clone() {
return Object.assign(Object.create(this), this);
}

File diff suppressed because one or more lines are too long