Skip to content

Instantly share code, notes, and snippets.

@ashfurrow
Created October 21, 2014 14:13
Show Gist options
  • Select an option

  • Save ashfurrow/4dbe36d0faf65ce69ecd to your computer and use it in GitHub Desktop.

Select an option

Save ashfurrow/4dbe36d0faf65ce69ecd to your computer and use it in GitHub Desktop.
Breakpoint errors
error: <EXPR>:1:8: error: consecutive statements on a line must be separated by ';'
(void*)dlopen("/Applications/Reveal.app/Contents/SharedSupport/iOS-Libraries/libReveal.dylib", 0x2);
^
;
error: <EXPR>:1:53: error: expected ',' separator
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
,
<EXPR>:1:68: error: expected ',' separator
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
,
<EXPR>:1:89: error: expected expression in list of expressions
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
<EXPR>:1:89: error: expected ',' separator
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
,
<EXPR>:1:89: error: expected expression in list of expressions
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
<EXPR>:1:89: error: expected ',' separator
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
,
<EXPR>:1:89: error: expected ']' in expression list
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
<EXPR>:1:7: note: to match this opening '['
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
<EXPR>:1:89: error: consecutive statements on a line must be separated by ';'
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
;
<EXPR>:1:90: error: expected an attribute name
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
<EXPR>:1:90: error: expected declaration
(void)[(NSNotificationCenter*)[NSNotificationCenter defaultCenter] postNotificationName:@"IBARevealRequestStart" object:nil];
^
@tonyarnold
Copy link
Copy Markdown

I can reproduce what you're seeing when I setup the LLDB command aliases and try to execute them via breakpoints.

@crylico
Copy link
Copy Markdown

crylico commented Dec 8, 2014

Did this ever get resolved?

@zonebin
Copy link
Copy Markdown

zonebin commented Sep 28, 2016

I also come this problem. Did this have been solved?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment