Skip to content

Commit

Permalink
add FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
majosm committed Jul 9, 2024
1 parent 31bb4f3 commit f678c58
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions arraycontext/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,15 @@ def compile(self, f: Callable[..., Any]) -> Callable[..., Any]:
"""
return f

# FIXME: Think about making this a standalone function? Would make it easier to
# pass arguments when used as a decorator, e.g.:
# @outline(actx, id=...)
# def func(...):
# vs.
# outline = partial(actx.outline, id=...)
#
# @outline
# def func(...):
def outline(self,
f: Callable[..., Any],
*,
Expand Down

0 comments on commit f678c58

Please sign in to comment.