| OLD | NEW | 
|     1 // Copyright 2012 the V8 project authors. All rights reserved. |     1 // Copyright 2012 the V8 project authors. All rights reserved. | 
|     2 // Use of this source code is governed by a BSD-style license that can be |     2 // Use of this source code is governed by a BSD-style license that can be | 
|     3 // found in the LICENSE file. |     3 // found in the LICENSE file. | 
|     4  |     4  | 
|     5 /** \mainpage V8 API Reference Guide |     5 /** \mainpage V8 API Reference Guide | 
|     6  * |     6  * | 
|     7  * V8 is Google's open source JavaScript engine. |     7  * V8 is Google's open source JavaScript engine. | 
|     8  * |     8  * | 
|     9  * This set of documents provides reference material generated from the |     9  * This set of documents provides reference material generated from the | 
|    10  * V8 header file, include/v8.h. |    10  * V8 header file, include/v8.h. | 
| (...skipping 6470 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  6481     kArrayPrototypeConstructorModified = 26, |  6481     kArrayPrototypeConstructorModified = 26, | 
|  6482     kArrayInstanceProtoModified = 27, |  6482     kArrayInstanceProtoModified = 27, | 
|  6483     kArrayInstanceConstructorModified = 28, |  6483     kArrayInstanceConstructorModified = 28, | 
|  6484     kLegacyFunctionDeclaration = 29, |  6484     kLegacyFunctionDeclaration = 29, | 
|  6485     kRegExpPrototypeSourceGetter = 30, |  6485     kRegExpPrototypeSourceGetter = 30, | 
|  6486     kRegExpPrototypeOldFlagGetter = 31, |  6486     kRegExpPrototypeOldFlagGetter = 31, | 
|  6487     kDecimalWithLeadingZeroInStrictMode = 32, |  6487     kDecimalWithLeadingZeroInStrictMode = 32, | 
|  6488     kLegacyDateParser = 33, |  6488     kLegacyDateParser = 33, | 
|  6489     kDefineGetterOrSetterWouldThrow = 34, |  6489     kDefineGetterOrSetterWouldThrow = 34, | 
|  6490     kFunctionConstructorReturnedUndefined = 35, |  6490     kFunctionConstructorReturnedUndefined = 35, | 
 |  6491     kAssigmentExpressionLHSIsCallInSloppy = 36, | 
 |  6492     kAssigmentExpressionLHSIsCallInStrict = 37, | 
|  6491  |  6493  | 
|  6492     // If you add new values here, you'll also need to update Chromium's: |  6494     // If you add new values here, you'll also need to update Chromium's: | 
|  6493     // UseCounter.h, V8PerIsolateData.cpp, histograms.xml |  6495     // UseCounter.h, V8PerIsolateData.cpp, histograms.xml | 
|  6494     kUseCounterFeatureCount  // This enum value must be last. |  6496     kUseCounterFeatureCount  // This enum value must be last. | 
|  6495   }; |  6497   }; | 
|  6496  |  6498  | 
|  6497   enum MessageErrorLevel { |  6499   enum MessageErrorLevel { | 
|  6498     kMessageLog = (1 << 0), |  6500     kMessageLog = (1 << 0), | 
|  6499     kMessageDebug = (1 << 1), |  6501     kMessageDebug = (1 << 1), | 
|  6500     kMessageInfo = (1 << 2), |  6502     kMessageInfo = (1 << 2), | 
| (...skipping 3247 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  9748  */ |  9750  */ | 
|  9749  |  9751  | 
|  9750  |  9752  | 
|  9751 }  // namespace v8 |  9753 }  // namespace v8 | 
|  9752  |  9754  | 
|  9753  |  9755  | 
|  9754 #undef TYPE_CHECK |  9756 #undef TYPE_CHECK | 
|  9755  |  9757  | 
|  9756  |  9758  | 
|  9757 #endif  // INCLUDE_V8_H_ |  9759 #endif  // INCLUDE_V8_H_ | 
| OLD | NEW |