annotate Implab/PromiseState.cs @ 255:b00441e04738 v3

Adde workaround to the behaviour of the logical operations stack in conjuction with async/await methods
author cin
date Wed, 04 Apr 2018 15:38:48 +0300
parents eee3e49dd1ff
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
243
b1e0ffdf3451 working on promises
cin
parents:
diff changeset
1 namespace Implab {
b1e0ffdf3451 working on promises
cin
parents:
diff changeset
2 public enum PromiseState {
b1e0ffdf3451 working on promises
cin
parents:
diff changeset
3 Pending,
b1e0ffdf3451 working on promises
cin
parents:
diff changeset
4
244
eee3e49dd1ff working on promises
cin
parents: 243
diff changeset
5 Fulfilled,
243
b1e0ffdf3451 working on promises
cin
parents:
diff changeset
6
b1e0ffdf3451 working on promises
cin
parents:
diff changeset
7 Rejected
b1e0ffdf3451 working on promises
cin
parents:
diff changeset
8 }
b1e0ffdf3451 working on promises
cin
parents:
diff changeset
9 }