nitc $ DetectVarianceConstraintsPhase :: SELF
Type of this instance, automatically specialized in every classnitc $ DetectVarianceConstraintsPhase :: process_mainmodule
Specific action to execute on the whole program.nitc :: Phase :: _in_hierarchy
The dependence relation of the phase with the other phasesnitc :: Phase :: _toolcontext
The toolcontext instance attached to the phasecore :: Object :: class_factory
Implementation used byget_class
to create the specific class.
nitc :: Phase :: defaultinit
core :: Object :: defaultinit
nitc :: Phase :: in_hierarchy
The dependence relation of the phase with the other phasesnitc :: Phase :: in_hierarchy=
The dependence relation of the phase with the other phasescore :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
core :: Object :: native_class_name
The class name of the object in CString format.core :: Object :: output_class_name
Display class name on stdout (debug only).nitc :: Phase :: process_annotated_node
Specific actions to execute on annotated nodesnitc :: Phase :: process_mainmodule
Specific action to execute on the whole program.nitc :: Phase :: process_nclassdef
Specific actions to execute on the tree of a class definitionnitc :: Phase :: process_nmodule
Specific actions to execute on the whole tree of a modulenitc :: Phase :: process_nmodule_after
Specific actions to execute on the whole tree of a modulenitc :: Phase :: process_npropdef
Specific actions to execute on the tree of a propertynitc :: Phase :: toolcontext
The toolcontext instance attached to the phasenitc :: Phase :: toolcontext=
The toolcontext instance attached to the phase
private class DetectVarianceConstraintsPhase
super Phase
init
do
toolcontext.option_context.add_option(toolcontext.opt_detect_variance_constraints)
end
redef fun process_mainmodule(mainmodule, given_mmodules)
do
if not toolcontext.opt_detect_variance_constraints.value and not toolcontext.opt_all.value then return
print "--- Detection of variance constraints on formal parameter types ---"
var k = new DetectVarianceConstraints
k.collect(mainmodule)
print "-- Generic classes --"
k.cpt_class.print_elements(10)
print " total classes: {k.cpt_class.sum}"
print " total formal parameters: {k.pts.length}"
k.propagate
print "-- Including `private` properties --"
k.print_stats
k = new DetectVarianceConstraints
k.exclude_private = true
k.collect(mainmodule)
k.propagate
print "-- Excluding `private` properties --"
k.print_stats
end
end
src/metrics/detect_variance_constraints.nit:41,1--77,3