brink-syntax-native 0.0.17

Lexer and error-resilient CST for the .brink native surface (B0.5 grammar skeleton)
Documentation
fn compute(x) {
  let y = x + 1;
  y += 1;
  y -= 1;
  log(y, 1);
  if y as ok {
    ok;
  } else {
    0;
  }
  while y {
    break;
  }
  for i in y {
    continue;
  }
  until y;
  y
}