catch y-* related errors
This commit is contained in:
		
							parent
							
								
									f537a43e29
								
							
						
					
					
						commit
						40fb16ef32
					
				@ -67,7 +67,11 @@ export default function Utils (Y) {
 | 
			
		||||
      this._eventListener[name] = listener.filter(e => e !== f)
 | 
			
		||||
    }
 | 
			
		||||
    emit (name, value) {
 | 
			
		||||
      (this._eventListener[name] || []).forEach(l => l(value))
 | 
			
		||||
      let listener = this._eventListener[name] || []
 | 
			
		||||
      if (name === 'error' && listener.length === 0) {
 | 
			
		||||
        console.error(value)
 | 
			
		||||
      }
 | 
			
		||||
      listener.forEach(l => l(value))
 | 
			
		||||
    }
 | 
			
		||||
    destroy () {
 | 
			
		||||
      this._eventListener = null
 | 
			
		||||
 | 
			
		||||
@ -1,4 +1,3 @@
 | 
			
		||||
 | 
			
		||||
import extendRBTree from './RedBlackTree'
 | 
			
		||||
 | 
			
		||||
export default function extend (Y) {
 | 
			
		||||
@ -48,10 +47,14 @@ export default function extend (Y) {
 | 
			
		||||
    }
 | 
			
		||||
    transact (makeGen) {
 | 
			
		||||
      const t = new Transaction(this)
 | 
			
		||||
      try {
 | 
			
		||||
        while (makeGen != null) {
 | 
			
		||||
          makeGen.call(t)
 | 
			
		||||
          makeGen = this.getNextRequest()
 | 
			
		||||
        }
 | 
			
		||||
      } catch (e) {
 | 
			
		||||
        this.y.emit('error', e)
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
    destroy () {
 | 
			
		||||
      super.destroy()
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user