Skip to content

Commit 6197a7a

Browse files
committed
add FIXME
1 parent d68010a commit 6197a7a

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
@@ -578,6 +578,15 @@ def compile(self, f: Callable[..., Any]) -> Callable[..., Any]:
578578
"""
579579
return f
580580

581+
# FIXME: Think about making this a standalone function? Would make it easier to
582+
# pass arguments when used as a decorator, e.g.:
583+
# @outline(actx, id=...)
584+
# def func(...):
585+
# vs.
586+
# outline = partial(actx.outline, id=...)
587+
#
588+
# @outline
589+
# def func(...):
581590
def outline(self,
582591
f: Callable[..., Any],
583592
*,

0 commit comments

Comments
 (0)