Cannot use arrow functions.

This commit is contained in:
Julien Fontanet 2015-02-25 16:08:55 +01:00
parent 0c3304f041
commit e2e369a463

View File

@ -3,7 +3,7 @@ import {$coroutine, $wait} from '../fibers-utils';
//====================================================================
let set = $coroutine(params => {
let set = $coroutine(function (params) {
let SR;
try {
SR = this.getObject(params.id, 'SR');
@ -37,7 +37,7 @@ export {set};
//--------------------------------------------------------------------
let scan = $coroutine(({id}) => {
let scan = $coroutine(function ({id}) {
let SR;
try {
SR = this.getObject(id, 'SR');