13 lines
250 B
Python
13 lines
250 B
Python
|
"""Compilation modes."""
|
||
|
|
||
|
def is_profiling_enabled(hs):
|
||
|
"""Check whether profiling mode is enabled.
|
||
|
|
||
|
Args:
|
||
|
hs: Haskell context.
|
||
|
|
||
|
Returns:
|
||
|
bool: True if the mode is enabled, False otherwise.
|
||
|
"""
|
||
|
return hs.mode == "dbg"
|