Skip to content

nef version 0.6.2

Compare
Choose a tag to compare
@miguelangel-dev miguelangel-dev released this 24 Jul 17:26
· 39 commits to master since this release

Misc. Updates

  • Add Action to bump Homebrew formula when a new tag is pushed [0-9]+.[0-9]+.[0-9]+.

Bug Fixes

  • Support for inline comments multiline. It fixes bug #162 and completes to support all kind of comments. Ex.
import Foundation
/* Comment */

before, it has not been supported and now nef syntax-analyzer will output the next AST:

block([
      NefCore.Node.Code.code("import Foundation\n"), 
      NefCore.Node.Code.comment("/* Comment */\n")
])