Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
68513b59
Commit
68513b59
authored
Feb 10, 2010
by
hjk
Browse files
debugger: make MI parser accept superflous commas to reduce that burder on
the producer side
parent
28b0dcc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbmi.cpp
View file @
68513b59
...
...
@@ -39,6 +39,12 @@
namespace
Debugger
{
namespace
Internal
{
void
skipCommas
(
const
char
*&
from
,
const
char
*
to
)
{
while
(
*
from
==
','
&&
from
!=
to
)
++
from
;
}
QTextStream
&
operator
<<
(
QTextStream
&
os
,
const
GdbMi
&
mi
)
{
return
os
<<
mi
.
toString
();
...
...
@@ -180,6 +186,7 @@ void GdbMi::parseTuple(const char *&from, const char *to)
void
GdbMi
::
parseTuple_helper
(
const
char
*&
from
,
const
char
*
to
)
{
skipCommas
(
from
,
to
);
//qDebug() << "parseTuple_helper: " << QByteArray(from, to - from);
m_type
=
Tuple
;
while
(
from
<
to
)
{
...
...
@@ -193,8 +200,7 @@ void GdbMi::parseTuple_helper(const char *&from, const char *to)
if
(
!
child
.
isValid
())
return
;
m_children
+=
child
;
if
(
*
from
==
','
)
++
from
;
skipCommas
(
from
,
to
);
}
}
...
...
@@ -204,6 +210,7 @@ void GdbMi::parseList(const char *&from, const char *to)
QTC_ASSERT
(
*
from
==
'['
,
/**/
);
++
from
;
m_type
=
List
;
skipCommas
(
from
,
to
);
while
(
from
<
to
)
{
if
(
*
from
==
']'
)
{
++
from
;
...
...
@@ -213,8 +220,7 @@ void GdbMi::parseList(const char *&from, const char *to)
child
.
parseResultOrValue
(
from
,
to
);
if
(
child
.
isValid
())
m_children
+=
child
;
if
(
*
from
==
','
)
++
from
;
skipCommas
(
from
,
to
);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment