File: _murphi2murphi

package info (click to toggle)
rumur 2025.08.31-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,644 kB
  • sloc: cpp: 18,711; ansic: 3,825; python: 1,578; objc: 1,542; yacc: 568; sh: 331; lex: 241; lisp: 15; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 907 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#compdef murphi2murphi

# Zsh completion script for Murphi2Murphi

_arguments \
  '--decompose-complex-comparisons[expand array and record equality tests]' \
  '--explicit-semicolons[add omitted semicolons]' \
  '--help[display help information]' \
  '--no-decompose-complex-comparisons[do not expand array and record equality tests]' \
  '--no-explicit-semicolons[do not add omitted semicolons]' \
  '--no-remove-liveness[do not delete liveness properties]' \
  '--no-switch-to-if[do not turn switch statements into if statements]' \
  '--no-to-ascii[do not remove use of unicode operators]' \
  {--output,-o}'[path to write resulting model to]:filename:_files' \
  '--remove-liveness[delete liveness properties]' \
  '--switch-to-if[turn switch statements into if statements]' \
  '--to-ascii[remove use of unicode operators]' \
  '--version[output version information]' \
  '*::filename:_files -g "*.m"'