tvl-depot/third_party/bazel/rules_haskell/haskell/private/mode.bzl

12 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"