| Index: runtime/vm/flow_graph_compiler.cc
|
| diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
|
| index 405b37f7b9f98e1461f8a604f7414fea5d836288..6d103b889c9a06c294e65bf0bc2150e6bc9a12b1 100644
|
| --- a/runtime/vm/flow_graph_compiler.cc
|
| +++ b/runtime/vm/flow_graph_compiler.cc
|
| @@ -785,8 +785,8 @@ void FlowGraphCompiler::AddExceptionHandler(intptr_t try_index,
|
| }
|
|
|
|
|
| -void FlowGraphCompiler::SetNeedsStacktrace(intptr_t try_index) {
|
| - exception_handlers_list_->SetNeedsStacktrace(try_index);
|
| +void FlowGraphCompiler::SetNeedsStackTrace(intptr_t try_index) {
|
| + exception_handlers_list_->SetNeedsStackTrace(try_index);
|
| }
|
|
|
|
|
| @@ -1070,13 +1070,13 @@ RawArray* FlowGraphCompiler::CreateDeoptInfo(Assembler* assembler) {
|
| }
|
|
|
|
|
| -void FlowGraphCompiler::FinalizeStackmaps(const Code& code) {
|
| +void FlowGraphCompiler::FinalizeStackMaps(const Code& code) {
|
| if (stackmap_table_builder_ == NULL) {
|
| code.set_stackmaps(Object::null_array());
|
| } else {
|
| // Finalize the stack map array and add it to the code object.
|
| code.set_stackmaps(
|
| - Array::Handle(stackmap_table_builder_->FinalizeStackmaps(code)));
|
| + Array::Handle(stackmap_table_builder_->FinalizeStackMaps(code)));
|
| }
|
| }
|
|
|
|
|