pre: fun
points to a symbol with an overloaded type.
pre: fun
points to a symbol with an overloaded type.
Selects the overloaded alternative of fun
which best matches given
argument types argtpes
and result type restpe
. Stores this alternative as
the symbol of fun
.
Create a lazy type which when completed returns type at index i
.
Create a lazy type which when completed returns type at index i
.
Create a lazy type which when completed returns type at index i
and sets alias
of completed symbol to symbol at index j
Create a lazy type which when completed returns type at index i
and sets alias
of completed symbol to symbol at index j
Test two objects for inequality.
Test two objects for inequality.
true
if !(this == that), false otherwise.
Equivalent to x.hashCode
except for boxed numeric types.
Equivalent to x.hashCode
except for boxed numeric types.
For numerics, it returns a hash value which is consistent
with value equality: if two value type instances compare
as true, then ## will produce the same hash value for each
of them.
a hash value consistent with ==
Test two objects for equality.
Test two objects for equality.
true
if the receiver object is equivalent to the argument; false
otherwise.
Cast the receiver object to be of type T0
.
Cast the receiver object to be of type T0
.
Note that the success of a cast at runtime is modulo Scala's erasure semantics.
Therefore the expression 1.asInstanceOf[String]
will throw a ClassCastException
at
runtime, while the expression List(1).asInstanceOf[List[String]]
will not.
In the latter example, because the type argument is erased as part of compilation it is
not possible to check whether the contents of the list are of the requested type.
the receiver object.
If entry at i
is undefined, define it by performing
operation op
with readIndex at start of i'th
entry. Restore
readIndex
afterwards.
If entry at i
is undefined, define it by performing
operation op
with readIndex at start of i'th
entry. Restore
readIndex
afterwards.
Create a copy of the receiver object.
Pickle = majorVersion_Nat minorVersion_Nat nbEntries_Nat {Entry} Entry = type_Nat length_Nat [actual entries]
Pickle = majorVersion_Nat minorVersion_Nat nbEntries_Nat {Entry} Entry = type_Nat length_Nat [actual entries]
Assumes that the ..Version_Nat are already consumed.
an array mapping entry numbers to locations in the byte array where the entries start.
Tests whether the argument (arg0
) is a reference to the receiver object (this
).
Tests whether the argument (arg0
) is a reference to the receiver object (this
).
The eq
method implements an equivalence relation on
non-null instances of AnyRef
, and has three additional properties:
x
and y
of type AnyRef
, multiple invocations of
x.eq(y)
consistently returns true
or consistently returns false
.x
of type AnyRef
, x.eq(null)
and null.eq(x)
returns false
.null.eq(null)
returns true
. When overriding the equals
or hashCode
methods, it is important to ensure that their behavior is
consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2
), they
should be equal to each other (o1 == o2
) and they should hash to the same value (o1.hashCode == o2.hashCode
).
true
if the argument is a reference to the receiver object; false
otherwise.
The equality method for reference types.
Called by the garbage collector on the receiver object when there are no more references to the object.
Called by the garbage collector on the receiver object when there are no more references to the object.
The details of when and if the finalize
method is invoked, as
well as the interaction between finalize
and non-local returns
and exceptions, are all platform dependent.
A representation that corresponds to the dynamic class of the receiver object.
A representation that corresponds to the dynamic class of the receiver object.
The nature of the representation is platform dependent.
a representation that corresponds to the dynamic class of the receiver object.
The hashCode method for reference types.
Does the entry represent children of a symbol?
Does the entry represent children of a symbol?
Test whether the dynamic type of the receiver object is T0
.
Test whether the dynamic type of the receiver object is T0
.
Note that the result of the test is modulo Scala's erasure semantics.
Therefore the expression 1.isInstanceOf[String]
will return false
, while the
expression List(1).isInstanceOf[List[String]]
will return true
.
In the latter example, because the type argument is erased as part of compilation it is
not possible to check whether the contents of the list are of the specified type.
true
if the receiver object is an instance of erasure of type T0
; false
otherwise.
Does entry represent a name?
Does entry represent a name?
Does entry represent a refinement symbol? pre: Entry is a class symbol
Does entry represent a refinement symbol? pre: Entry is a class symbol
Does entry represent a symbol annotation?
Does entry represent a symbol annotation?
Does entry represent an (internal) symbol
Does entry represent an (internal) symbol
Does entry represent an (internal or external) symbol
Does entry represent an (internal or external) symbol
Equivalent to !(this eq that)
.
Equivalent to !(this eq that)
.
true
if the argument is not a reference to the receiver object; false
otherwise.
Wakes up a single thread that is waiting on the receiver object's monitor.
Wakes up a single thread that is waiting on the receiver object's monitor.
Wakes up all threads that are waiting on the receiver object's monitor.
Wakes up all threads that are waiting on the receiver object's monitor.
Write a natural number x
at position pos
.
Write a natural number x
at position pos
.
If number is more than one byte, shift rest of array to make space.
...
...
Peek at the current byte without moving the read index
Peek at the current byte without moving the read index
Read an annotation argument, which is pickled either as a Constant or a Tree.
Read an annotation argument, which is pickled either as a Constant or a Tree.
Read an annotation and return it.
Read an annotation and return it. Used when unpickling an ANNOTATED(WSELF)tpe or a NestedAnnotArg
Read an AnnotationInfo.
Read an AnnotationInfo. Not to be called directly, use readAnnotation or readSymbolAnnotation
Read a byte
Read a byte
Read children and store them into the corresponding symbol.
Read children and store them into the corresponding symbol.
Read a constant
Read a constant
Read a long number in signed big endian format, base 256.
Read a long number in signed big endian format, base 256.
Read a name
Read a name
Read a natural number in big endian format, base 128.
Read a natural number in big endian format, base 128. All but the last digits have bit 0x80 set.
Read a symbol
Read a symbol
Read an annotation and as a side effect store it into the symbol it requests.
Read an annotation and as a side effect store it into the symbol it requests. Called at top-level, for all (symbol, annotInfo) entries.
Read a type
Read a type
is used to ease the transition to NullaryMethodTypes (commentmarker: NMT_TRANSITION) the flag say that a type of kind * is expected, so that PolyType(tps, restpe) can be disambiguated to PolyType(tps, NullaryMethodType(restpe)) (if restpe is not a ClassInfoType, a MethodType or a NullaryMethodType, which leaves TypeRef/SingletonType -- the latter would make the polytype a type constructor)
The decls' scope associated with given symbol
The decls' scope associated with given symbol
Perform operation op
the number of
times specified.
Perform operation op
the number of
times specified. Concatenate the results into a list.
Returns the buffer as a sequence of (Int, Array[Byte]) representing (tag, data) of the individual entries.
Returns the buffer as a sequence of (Int, Array[Byte]) representing (tag, data) of the individual entries. Saves and restores buffer state.
Creates a String representation of this object.
Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.
a String representation of the object.
Perform operation op
until the condition
readIndex == end
is satisfied.
Perform operation op
until the condition
readIndex == end
is satisfied.
Concatenate results into a list.
...
...
...
Write a byte of data
Write a byte of data
Write a long number x
in signed big endian format, base 256.
Write a long number x
in signed big endian format, base 256.
The long number to be written.
Like writeNat, but for longs.
Like writeNat, but for longs. This is not the same as writeLong, which writes in base 256. Note that the binary representation of LongNat is identical to Nat if the long value is in the range Int.MIN_VALUE to Int.MAX_VALUE.
Write a natural number in big endian format, base 128.
Write a natural number in big endian format, base 128. All but the last digits have bit 0x80 set.