s/parseStatement/parseStructuralElement/g in the UnwrappedLineParser.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171737 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Format/UnwrappedLineParser.cpp b/lib/Format/UnwrappedLineParser.cpp
index 52717e1..00ca3a5 100644
--- a/lib/Format/UnwrappedLineParser.cpp
+++ b/lib/Format/UnwrappedLineParser.cpp
@@ -112,7 +112,7 @@
       }
       break;
     default:
-      parseStatement();
+      parseStructuralElement();
       break;
     }
   } while (!eof());
@@ -196,7 +196,7 @@
   }
 }
 
-void UnwrappedLineParser::parseStatement() {
+void UnwrappedLineParser::parseStructuralElement() {
   parseComments();
 
   int TokenNumber = 0;
@@ -306,7 +306,7 @@
   } else {
     addUnwrappedLine();
     ++Line.Level;
-    parseStatement();
+    parseStructuralElement();
     --Line.Level;
   }
   if (FormatTok.Tok.is(tok::kw_else)) {
@@ -319,7 +319,7 @@
     } else {
       addUnwrappedLine();
       ++Line.Level;
-      parseStatement();
+      parseStructuralElement();
       --Line.Level;
     }
   } else if (NeedsUnwrappedLine) {
@@ -350,7 +350,7 @@
   } else {
     addUnwrappedLine();
     ++Line.Level;
-    parseStatement();
+    parseStructuralElement();
     --Line.Level;
   }
 }
@@ -363,7 +363,7 @@
   } else {
     addUnwrappedLine();
     ++Line.Level;
-    parseStatement();
+    parseStructuralElement();
     --Line.Level;
   }
 
@@ -374,7 +374,7 @@
   }
 
   nextToken();
-  parseStatement();
+  parseStructuralElement();
 }
 
 void UnwrappedLineParser::parseLabel() {
@@ -410,7 +410,7 @@
   } else {
     addUnwrappedLine();
     Line.Level += (Style.IndentCaseLabels ? 2 : 1);
-    parseStatement();
+    parseStructuralElement();
     Line.Level -= (Style.IndentCaseLabels ? 2 : 1);
   }
 }