Skip to content

Commit f678c58

Browse files
committed
add FIXME
1 parent 31bb4f3 commit f678c58

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
@@ -540,6 +540,15 @@ def compile(self, f: Callable[..., Any]) -> Callable[..., Any]:
540540
"""
541541
return f
542542

543+
# FIXME: Think about making this a standalone function? Would make it easier to
544+
# pass arguments when used as a decorator, e.g.:
545+
# @outline(actx, id=...)
546+
# def func(...):
547+
# vs.
548+
# outline = partial(actx.outline, id=...)
549+
#
550+
# @outline
551+
# def func(...):
543552
def outline(self,
544553
f: Callable[..., Any],
545554
*,

0 commit comments

Comments
 (0)