Skip to content

Commit 48254c4

Browse files
committed
add FIXME
1 parent 6ffb0f4 commit 48254c4

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

arraycontext/context.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,15 @@ def compile(self, f: Callable[..., Any]) -> Callable[..., Any]:
530530
"""
531531
return f
532532

533+
# FIXME: Think about making this a standalone function? Would make it easier to
534+
# pass arguments when used as a decorator, e.g.:
535+
# @outline(actx, id=...)
536+
# def func(...):
537+
# vs.
538+
# outline = partial(actx.outline, id=...)
539+
#
540+
# @outline
541+
# def func(...):
533542
def outline(self,
534543
f: Callable[..., Any],
535544
*,

0 commit comments

Comments
 (0)