uk.ac.man.cs.rainbow.compiler.types
Class NamedType

java.lang.Object
  |
  +--uk.ac.man.cs.rainbow.compiler.CompilerThing
        |
        +--uk.ac.man.cs.rainbow.compiler.CompilerNode
              |
              +--uk.ac.man.cs.rainbow.compiler.types.CompilerType
                    |
                    +--uk.ac.man.cs.rainbow.compiler.types.NamedType
All Implemented Interfaces:
Argument, Cloneable, Type

public class NamedType
extends CompilerType


Fields inherited from class uk.ac.man.cs.rainbow.compiler.types.CompilerType
is_dontcare, is_undefined
 
Fields inherited from class uk.ac.man.cs.rainbow.compiler.CompilerNode
next, sourcepos
 
Constructor Summary
NamedType(SourcePosition sourcepos, Identifier id)
           
NamedType(SourcePosition sourcepos, String nm)
           
NamedType(SourcePosition sourcepos, String nm, CompilerType spec)
           
 
Method Summary
 CompilerType check_record_selection(String fieldname, SourcePosition pos, Errors errors)
           
 CompilerType check_union_tag(String fieldname, SourcePosition pos, Errors errors)
           
 CompilerType component_types()
           
 boolean conforms_to(CompilerType other)
           
 Type datamodelType()
           
 int field_selector(String fname)
           
 boolean is_a_synonym()
           
 CompilerType replicate()
           
 CompilerType resolve_synonyms(TCEnv env, Errors errors)
           
 boolean structure_conforms(CompilerType other)
           
 CompilerType structure()
           
 String toString_structure()
           
 String toString()
           
 boolean valid(TCEnv env)
           
 
Methods inherited from class uk.ac.man.cs.rainbow.compiler.types.CompilerType
anonymiseAndTagList, anonymous_record_type, check_params, check_type, cloneAfterFirst, cloneFirst, cloneList, cloneType, cloneTypeNoNext, cloneTypeNoParent, cloneTypeNoParentNoNext, compatableWith, default_initial_value, dontcare, dontcareList, extract_enum_or_union_names, get_union_variant, list_lub, listReplicate, lub, make_anon_channels, rasm_list_default_initial_value, subst
 
Methods inherited from class uk.ac.man.cs.rainbow.compiler.CompilerNode
append, appendNotParent, dumpNode, dumpTree, getParent, indent, iterator, list_typecheck, list_typecheck, listLength, listToString, noParent, rasm_list, rasm, rasm, setParent, typecheck, typecheck, typecheckGreen, typecheckGreen
 
Methods inherited from class uk.ac.man.cs.rainbow.compiler.CompilerThing
className, crashHere, getSerial
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NamedType

public NamedType(SourcePosition sourcepos,
                 String nm,
                 CompilerType spec)

NamedType

public NamedType(SourcePosition sourcepos,
                 String nm)

NamedType

public NamedType(SourcePosition sourcepos,
                 Identifier id)
Method Detail

is_a_synonym

public boolean is_a_synonym()

toString_structure

public String toString_structure()

toString

public String toString()
Overrides:
toString in class CompilerType

replicate

public CompilerType replicate()
Overrides:
replicate in class CompilerType

valid

public boolean valid(TCEnv env)
Overrides:
valid in class CompilerType

structure

public CompilerType structure()
Overrides:
structure in class CompilerType

conforms_to

public boolean conforms_to(CompilerType other)
Overrides:
conforms_to in class CompilerType

structure_conforms

public boolean structure_conforms(CompilerType other)
Overrides:
structure_conforms in class CompilerType

resolve_synonyms

public CompilerType resolve_synonyms(TCEnv env,
                                     Errors errors)
Overrides:
resolve_synonyms in class CompilerType

check_record_selection

public CompilerType check_record_selection(String fieldname,
                                           SourcePosition pos,
                                           Errors errors)
Overrides:
check_record_selection in class CompilerType

check_union_tag

public CompilerType check_union_tag(String fieldname,
                                    SourcePosition pos,
                                    Errors errors)
Overrides:
check_union_tag in class CompilerType

field_selector

public int field_selector(String fname)
Overrides:
field_selector in class CompilerType

component_types

public CompilerType component_types()
Overrides:
component_types in class CompilerType

datamodelType

public Type datamodelType()
Overrides:
datamodelType in class CompilerType