Get rid off unused regexp QmlJSIndenter::label.

This commit is contained in:
Roberto Raggi
2010-01-29 15:01:49 +01:00
parent 206dafcd94
commit fbbc27be32
2 changed files with 1 additions and 3 deletions

View File

@@ -84,8 +84,7 @@ const int QmlJSIndenter::SmallRoof = 40;
const int QmlJSIndenter::BigRoof = 400; const int QmlJSIndenter::BigRoof = 400;
QmlJSIndenter::QmlJSIndenter() QmlJSIndenter::QmlJSIndenter()
: label(QRegExp(QLatin1String("^\\s*((?:case\\b([^:])+|[a-zA-Z_0-9.]+)(?:\\s+)?:)(?!:)"))), : braceX(QRegExp(QLatin1String("^\\s*\\}\\s*(?:else|catch)\\b")))
braceX(QRegExp(QLatin1String("^\\s*\\}\\s*(?:else|catch)\\b")))
{ {
/* /*

View File

@@ -132,7 +132,6 @@ private:
const int *yyBraceDepth; const int *yyBraceDepth;
const bool *yyLeftBraceFollows; const bool *yyLeftBraceFollows;
QRegExp label;
QRegExp braceX; QRegExp braceX;
}; };