%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
// Copyright 2018 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_PARSING_PREPARSER_LOGGER_H_ #define V8_PARSING_PREPARSER_LOGGER_H_ namespace v8 { namespace internal { class PreParserLogger final { public: PreParserLogger() : end_(-1), num_parameters_(-1), function_length_(-1), num_inner_functions_(-1) {} void LogFunction(int end, int num_parameters, int function_length, int num_inner_functions) { end_ = end; num_parameters_ = num_parameters; function_length_ = function_length; num_inner_functions_ = num_inner_functions; } int end() const { return end_; } int num_parameters() const { return num_parameters_; } int function_length() const { return function_length_; } int num_inner_functions() const { return num_inner_functions_; } private: int end_; // For function entries. int num_parameters_; int function_length_; int num_inner_functions_; }; } // namespace internal } // namespace v8. #endif // V8_PARSING_PREPARSER_LOGGER_H_