Class: Duby::JVM::Types::DoubleType

Inherits:
FloatType show all
Defined in:
lib/duby/jvm/types/floats.rb

Constant Summary

Constants included from MethodLookup

MethodLookup::BOOLEAN, MethodLookup::BYTE, MethodLookup::CHAR, MethodLookup::DOUBLE, MethodLookup::FLOAT, MethodLookup::INT, MethodLookup::LONG, MethodLookup::PrimitiveConversions, MethodLookup::SHORT

Constants inherited from AST::TypeReference

AST::TypeReference::ErrorType, AST::TypeReference::NoType, AST::TypeReference::NullType, AST::TypeReference::UnreachableType

Instance Attribute Summary

Attributes inherited from AST::TypeReference

#array, #meta

Attributes included from AST::Named

#name

Attributes inherited from AST::Node

#children, #inferred_type, #newline, #parent, #position

Instance Method Summary collapse

Methods inherited from FloatType

#suffix

Methods inherited from Number

#add_delegates, #add_intrinsics, #boolean_operator, #delegate_intrinsic, #jump_if, #math_operator, #math_type, #suffix, #unary_operator

Methods inherited from PrimitiveType

#add_intrinsics, #convertible_to?, #initialize, #interfaces, #newarray, #primitive?, #primitive_type

Methods inherited from Type

#add_intrinsics, #add_method, #aload, #array?, #array_type, #assignable_from?, #astore, #basic_type, #compatible?, #component_type, #constructor, #declared_class_methods, #declared_instance_methods, #declared_intrinsics, #get_method, #initialize, #inspect, #interface?, #interfaces, #intrinsics, #is_parent, #iterable?, #java_method, #jvm_type, #load, #meta, #meta?, #newarray, #primitive?, #return, #store, #superclass, #to_source, #unmeta, #void?

Methods included from MethodLookup

#each_is_exact, #each_is_exact_or_subtype_or_convertible, #find_jls, #find_method, #is_more_specific?, #log, #phase1, #phase2, #phase3, #primitive_convertible?

Methods inherited from AST::TypeReference

#==, #compatible?, #component_type, #eql?, #error?, #hash, #initialize, #is_parent, #iterable?, #meta?, #narrow, #primitive?, #to_s, #unmeta, #unreachable?

Methods included from AST::Named

#to_s

Methods inherited from AST::Node

#[], #each, #expr?, #initialize, #inspect, #line_number, #log, #precompile, #resolve_if, #resolved!, #resolved?, #simple_name, #temp, #to_s

Constructor Details

This class inherits a constructor from Duby::JVM::Types::PrimitiveType

Instance Method Details

#init_value(builder) ⇒ Object



49
50
51
# File 'lib/duby/jvm/types/floats.rb', line 49

def init_value(builder)
  builder.dconst_0
end

#literal(builder, value) ⇒ Object



53
54
55
56
57
58
59
60
61
62
# File 'lib/duby/jvm/types/floats.rb', line 53

def literal(builder, value)
  case value
  when 0.0
    builder.dconst_0
  when 1.0
    builder.dconst_1
  else
    builder.ldc_double(value)
  end
end

#prefixObject



41
42
43
# File 'lib/duby/jvm/types/floats.rb', line 41

def prefix
  'd'
end

#wide?Boolean

Returns:



45
46
47
# File 'lib/duby/jvm/types/floats.rb', line 45

def wide?
  true
end

#widen(builder, type) ⇒ Object



64
65
66
67
68
# File 'lib/duby/jvm/types/floats.rb', line 64

def widen(builder, type)
  if type != Double
    raise ArgumentError, "Invalid widening conversion from Int to #{type}"
  end
end