stefansjs / flatbuffers-intellij-plugin

A flatbuffers schema editing plugin for the IntelliJ platform
Other
3 stars 1 forks source link

Support for Multiline Comments #8

Closed Mythra closed 4 years ago

Mythra commented 4 years ago

Currently the parser errors when parsing multi-line comments inside of flatbuffer files e.g. something like:

namespace blah;

/**
 * Test
 *
 * Describes test in more detail
 */
table Test {
  /**
   * The ID of this connection.
   */
  a:string;
}
stefansjs commented 4 years ago

@SecurityInsanity thanks for the bug report. I pushed a fix this weekend and the latest version should be available https://plugins.jetbrains.com/plugin/14326-flatbuffers-support/update/88947. Let me know if you continue to have issues.