File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
tools/generators/promise/gen/async Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- // This is auto generated code
1+ // Package async contains promise implementations generated for specific types.
2+ // This is auto generated code.
23package async
34
45import (
@@ -7,11 +8,10 @@ import (
78 "sync"
89)
910
10- // Promise represents an eventual completion of an ansynchronous operation
11- // and its resulting value. Promise can be either fulfilled or failed and
12- // it can happen only one time. All Promise operations are thread-safe.
13- //
14- // To create a promise use: `&BigIntPromise{}`
11+ // BigIntPromise represents an eventual completion of an ansynchronous
12+ // operation and its resulting value. Promise can be either fulfilled or
13+ // failed and it can happen only one time. All Promise operations are
14+ // thread-safe. To create a promise use: `&BigIntPromise{}`
1515type BigIntPromise struct {
1616 mutex sync.Mutex
1717 successFn func (* big.Int )
You can’t perform that action at this time.
0 commit comments