Interface SyntaxTagged

All Known Implementing Classes:
Probe

public interface SyntaxTagged
Information about a guest language program element in a Truffle AST that can be marked as belonging to 0 or more tags.

Disclaimer: experimental interface under development.

  • Method Summary

    Modifier and Type
    Method
    Description
    In which user-sensible categories has this node been tagged (empty set if none).
    boolean
    Is this node tagged as belonging to a particular human-sensible category of language constructs?
  • Method Details

    • isTaggedAs

      boolean isTaggedAs(SyntaxTag tag)
      Is this node tagged as belonging to a particular human-sensible category of language constructs?
    • getSyntaxTags

      Collection<SyntaxTag> getSyntaxTags()
      In which user-sensible categories has this node been tagged (empty set if none).