clang icon indicating copy to clipboard operation
clang copied to clipboard

Parse multiple decls/stmts inside of injections

Open asutton opened this issue 7 years ago • 1 comments

Support this:

constexpr {
  -> {
    void f() { }
    void g() { }
  }
}

I believe the parser will currently lex all contained declarations and statements, but we need to ensure that they are processed as multiple declarations or statements.

asutton avatar Apr 10 '17 13:04 asutton

This is related to #25. Fixing that will fix this also.

asutton avatar May 31 '17 14:05 asutton