Theia API Documentation v1.70.0
    Preparing search index...

    Interface CommentRule

    Describes how comments for a language work.

    interface CommentRule {
        blockComment?: CharacterPair;
        lineComment?: string | LineCommentRule;
    }
    Index

    Properties

    blockComment?: CharacterPair

    The block comment character pair, like /* block comment */

    lineComment?: string | LineCommentRule

    The line comment token, like // this is a comment