Skip to content

Commit

Permalink
refactor(computation): move IOStatus inside
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Apr 18, 2019
1 parent 167229b commit d19df55
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
10 changes: 0 additions & 10 deletions src/internals/IOStatus.ts

This file was deleted.

9 changes: 8 additions & 1 deletion src/sources/Computation.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
import {Cancel, IScheduler} from 'ts-scheduler'

import {FIO} from '../internals/FIO'
import {IOStatus} from '../internals/IOStatus'
import {REJ} from '../internals/REJ'
import {RES} from '../internals/RES'

enum IOStatus {
PENDING,
FORKED,
RESOLVED,
REJECTED,
CANCELLED
}

/**
* @ignore
*/
Expand Down

0 comments on commit d19df55

Please sign in to comment.