Skip to content

Commit

Permalink
Loki: Remove option to disk-cache OFP ASTs
Browse files Browse the repository at this point in the history
  • Loading branch information
mlange05 committed Jan 9, 2025
1 parent 4ff8f63 commit f388076
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions loki/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,6 @@
config.register('frontend-strict-mode', False, env_variable='LOKI_FRONTEND_STRICT_MODE',
preprocess=lambda i: bool(i) if isinstance(i, int) else i)

# Disk-caching, which causes OFP ASTs to be cached on disk for
# fast re-parsing of unchanged source files
config.register('disk-cache', False, env_variable='LOKI_DISK_CACHE',
preprocess=lambda i: bool(i) if isinstance(i, int) else i)

# Force symbol comparison and object equality to be case sensitive
config.register('case-sensitive', False, env_variable='LOKI_CASE_SENSITIVE',
preprocess=lambda i: bool(i) if isinstance(i, int) else i)
Expand Down

0 comments on commit f388076

Please sign in to comment.