# File lib/cmdparse.rb, line 194
194:     def super_commands
195:       cmds = []
196:       cmd = self
197:       while !cmd.nil? && !cmd.super_command.kind_of?( CommandParser )
198:         cmds << cmd
199:         cmd = cmd.super_command
200:       end
201:       cmds
202:     end