Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Unified Diff: runtime/vm/parser_test.cc

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/parser.cc ('k') | runtime/vm/port.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser_test.cc
diff --git a/runtime/vm/parser_test.cc b/runtime/vm/parser_test.cc
index f540eca522887da982820fa58f205265e2b23ae2..b649059399330b5cf4a2020d39a142fd1c261a3c 100644
--- a/runtime/vm/parser_test.cc
+++ b/runtime/vm/parser_test.cc
@@ -2,13 +2,12 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-
+#include "vm/parser.h"
#include "vm/ast_printer.h"
#include "vm/class_finalizer.h"
#include "vm/debugger.h"
#include "vm/longjump.h"
#include "vm/object.h"
-#include "vm/parser.h"
#include "vm/symbols.h"
#include "vm/thread.h"
#include "vm/unit_test.h"
@@ -17,7 +16,6 @@ namespace dart {
DECLARE_FLAG(bool, show_invisible_frames);
-
static void DumpFunction(const Library& lib,
const char* cname,
const char* fname) {
@@ -52,7 +50,6 @@ static void DumpFunction(const Library& lib,
EXPECT(retval);
}
-
void CheckField(const Library& lib,
const char* class_name,
const char* field_name,
@@ -89,7 +86,6 @@ void CheckField(const Library& lib,
EXPECT_EQ(field.is_static(), expect_static);
}
-
void CheckFunction(const Library& lib,
const char* class_name,
const char* function_name,
@@ -109,7 +105,6 @@ void CheckFunction(const Library& lib,
EXPECT(!function.IsNull());
}
-
TEST_CASE(ParseClassDefinition) {
const char* script_chars =
"class C { } \n"
@@ -145,7 +140,6 @@ TEST_CASE(ParseClassDefinition) {
CheckFunction(lib, "A", "foo", true);
}
-
TEST_CASE(Parser_TopLevel) {
const char* script_chars =
"class A extends B { \n"
@@ -175,13 +169,10 @@ TEST_CASE(Parser_TopLevel) {
DumpFunction(lib, "B", "bam");
}
-
#ifndef PRODUCT
-
static char* saved_vars = NULL;
-
static char* SkipIndex(const char* input) {
char* output_buffer = new char[strlen(input)];
char* output = output_buffer;
@@ -210,7 +201,6 @@ static char* SkipIndex(const char* input) {
return output_buffer;
}
-
// Saves the var descriptors for all frames on the stack as a string.
static void SaveVars(Dart_IsolateId isolate_id,
intptr_t bp_id,
@@ -239,7 +229,6 @@ static void SaveVars(Dart_IsolateId isolate_id,
saved_vars = buffer;
}
-
// Uses the debugger to pause the program and capture the variable
// descriptors for all frames on the stack.
static char* CaptureVarsAtLine(Dart_Handle lib, const char* entry, int line) {
@@ -256,7 +245,6 @@ static char* CaptureVarsAtLine(Dart_Handle lib, const char* entry, int line) {
return tmp;
}
-
TEST_CASE(Parser_AllocateVariables_CapturedVar) {
const char* kScriptChars =
"int main() {\n"
@@ -294,7 +282,6 @@ TEST_CASE(Parser_AllocateVariables_CapturedVar) {
free(vars);
}
-
TEST_CASE(Parser_AllocateVariables_NestedCapturedVar) {
const char* kScriptChars =
"int a() {\n"
@@ -350,7 +337,6 @@ TEST_CASE(Parser_AllocateVariables_NestedCapturedVar) {
free(vars);
}
-
TEST_CASE(Parser_AllocateVariables_TwoChains) {
const char* kScriptChars =
"int a() {\n"
@@ -430,7 +416,6 @@ TEST_CASE(Parser_AllocateVariables_TwoChains) {
free(vars);
}
-
TEST_CASE(Parser_AllocateVariables_Issue7681) {
// This is a distilled version of the program from Issue 7681.
//
@@ -488,7 +473,6 @@ TEST_CASE(Parser_AllocateVariables_Issue7681) {
free(vars);
}
-
TEST_CASE(Parser_AllocateVariables_CaptureLoopVar) {
// This test verifies that...
//
« no previous file with comments | « runtime/vm/parser.cc ('k') | runtime/vm/port.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698