| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index f39c64ce3e4ff74089cf149d3bfa4b80f0d1339f..81a4f9730f8431eb61edaebe88f8a8a874e58a25 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -596,7 +596,7 @@ class Class : public Object {
|
|
|
| // Return the signature type of this signature class.
|
| // For example, if this class represents a signature of the form
|
| - // 'F<T, R>(T, [b: B, c: C]) => R', then its signature type is a parameterized
|
| + // '<T, R>(T, [b: B, c: C]) => R', then its signature type is a parameterized
|
| // type with this class as the type class and type parameters 'T' and 'R'
|
| // as its type argument vector.
|
| RawType* SignatureType() const;
|
| @@ -833,14 +833,9 @@ class Class : public Object {
|
| // The class may be type parameterized unless the signature_function is in a
|
| // static scope. In that case, the type parameters are copied from the owner
|
| // class of signature_function.
|
| - // A null signature function may be passed in and patched later. See below.
|
| static RawClass* NewSignatureClass(const String& name,
|
| const Function& signature_function,
|
| - const Script& script,
|
| - intptr_t token_pos);
|
| -
|
| - // Patch the signature function of a signature class allocated without it.
|
| - void PatchSignatureFunction(const Function& signature_function) const;
|
| + const Script& script);
|
|
|
| // Return a class object corresponding to the specified kind. If
|
| // a canonicalized version of it exists then that object is returned
|
|
|