<Toplevel Module>
Umu
—
#6
ConcreteSyntax
—
#8
Core
—
#10
Declaration
—
#12
Abstract
—
#14
inherits from |
| ||||
has properties |
|
1 # coding: utf-8 2 # frozen_string_literal: true 3 4 5 6 module Umu 7 8 module ConcreteSyntax 9 10 module Core 11 12 module Declaration 13 14 class Abstract < ConcreteSyntax::Abstract 15 def exported_vars 16 raise X::InternalSubclassResponsibility 17 end 18 end 19 20 end # Umu::ConcreteSyntax::Core::Declaration 21 22 end # Umu::ConcreteSyntax::Core 23 24 end # Umu::ConcreteSyntax 25 26 end # Umu