effekt-lang / effekt-lang/effekt
Future Work: Special support for effects and handlers in the IDE
- Dominant language
- Scala
- Stars
- 469
- Forks
- 41
- Avg merge
- 1d 16h
- Merged PRs (30d)
- 23
Description
Some unstructured notes about things we might want to support at some point:
Possible IDE features:
- infer effects from effect holes
- update effects (fix effects refactoring)
- display inferred effects / types
- what are better alternatives to stack traces?
Questions:
- what effects are required by this function?
- effect provenance: where does this effect come from? (racket like) -- since we already translate to capabilities, we can easily show this particular binding information to the user
- what are potential handlers (call site analysis, called from)
- given a handler: which calls to operations might be handled?
```
def bar(x: Int) = {
...
}
def foo(): Int / Print = // ?? =.
def bar() = {
val position = 42
position. x + 1 } ?>
({ x => 42 })(5)
()
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.