Version 3.29.57 (based on bleeding_edge revision r23848)
ES6: Add support for method shorthand in object literals (issue 3516).
Unbreak FreeBSD build (hopefully) (issue 3548).
Performance and stability improvements on all platforms.
git-svn-id: https://v8.googlecode.com/svn/trunk@23850 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 55bb99a..9d0fbdf 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -41,7 +41,7 @@
input_api.PresubmitLocalPath(), 'tools'))
from presubmit import CppLintProcessor
from presubmit import SourceProcessor
- from presubmit import CheckGeneratedRuntimeTests
+ from presubmit import CheckRuntimeVsNativesNameClashes
from presubmit import CheckExternalReferenceRegistration
results = []
@@ -51,9 +51,9 @@
results.append(output_api.PresubmitError(
"Copyright header, trailing whitespaces and two empty lines " \
"between declarations check failed"))
- if not CheckGeneratedRuntimeTests(input_api.PresubmitLocalPath()):
+ if not CheckRuntimeVsNativesNameClashes(input_api.PresubmitLocalPath()):
results.append(output_api.PresubmitError(
- "Generated runtime tests check failed"))
+ "Runtime/natives name clash check failed"))
if not CheckExternalReferenceRegistration(input_api.PresubmitLocalPath()):
results.append(output_api.PresubmitError(
"External references registration check failed"))