| Index: runtime/vm/kernel_binary_flowgraph.h
|
| diff --git a/runtime/vm/kernel_binary_flowgraph.h b/runtime/vm/kernel_binary_flowgraph.h
|
| index 88d9a01881760ae1ac3373214c528d93dd4548f2..f3d899be177a888837cdb0c3138af5dbbd92fd0e 100644
|
| --- a/runtime/vm/kernel_binary_flowgraph.h
|
| +++ b/runtime/vm/kernel_binary_flowgraph.h
|
| @@ -59,9 +59,7 @@ class StreamingDartTypeTranslator {
|
| translator_(translator) {
|
| translator_->type_parameter_scope_ = this;
|
| }
|
| - ~TypeParameterScope() {
|
| - translator_->type_parameter_scope_ = outer_;
|
| - }
|
| + ~TypeParameterScope() { translator_->type_parameter_scope_ = outer_; }
|
|
|
| TypeParameterScope* outer() const { return outer_; }
|
| intptr_t parameters_offset() const { return parameters_offset_; }
|
| @@ -90,7 +88,6 @@ class StreamingDartTypeTranslator {
|
| friend class KernelReader;
|
| };
|
|
|
| -
|
| class StreamingScopeBuilder {
|
| public:
|
| StreamingScopeBuilder(ParsedFunction* parsed_function,
|
| @@ -201,7 +198,6 @@ class StreamingScopeBuilder {
|
| StreamingDartTypeTranslator type_translator_;
|
| };
|
|
|
| -
|
| // There are several cases when we are compiling constant expressions:
|
| //
|
| // * constant field initializers:
|
| @@ -946,7 +942,6 @@ class FieldHelper {
|
| intptr_t next_read_;
|
| };
|
|
|
| -
|
| // Helper class that reads a kernel Procedure from binary.
|
| //
|
| // Use ReadUntilExcluding to read up to but not including a field.
|
|
|