| Index: src/full-codegen/full-codegen.cc
|
| diff --git a/src/full-codegen/full-codegen.cc b/src/full-codegen/full-codegen.cc
|
| index 0e3192868943825853572e2c45d1db9ce234dd5c..92300b2e93cb64d3077f410ed299a977bf71da54 100644
|
| --- a/src/full-codegen/full-codegen.cc
|
| +++ b/src/full-codegen/full-codegen.cc
|
| @@ -662,12 +662,14 @@ void FullCodeGenerator::EmitHasProperty() {
|
|
|
| void FullCodeGenerator::RecordStatementPosition(int pos) {
|
| DCHECK_NE(kNoSourcePosition, pos);
|
| - source_position_table_builder_.AddPosition(masm_->pc_offset(), pos, true);
|
| + source_position_table_builder_.AddPosition(masm_->pc_offset(),
|
| + SourcePosition(pos), true);
|
| }
|
|
|
| void FullCodeGenerator::RecordPosition(int pos) {
|
| DCHECK_NE(kNoSourcePosition, pos);
|
| - source_position_table_builder_.AddPosition(masm_->pc_offset(), pos, false);
|
| + source_position_table_builder_.AddPosition(masm_->pc_offset(),
|
| + SourcePosition(pos), false);
|
| }
|
|
|
|
|
|
|