예제 #1
0
        public SpanDefinition()
        {
            KeywordsList  = new PatternListList(this);
            OperatorsList = new PatternListList(this);

            Style = new TextStyle();
            KeywordsList.Parent      = this;
            KeywordsList.IsKeyword   = true;
            OperatorsList.Parent     = this;
            OperatorsList.IsOperator = true;
            ScopePatterns            = new ScopeList(this);
        }
예제 #2
0
        public BlockType()
        {
            this.KeywordsList  = new PatternListList(this);
            this.OperatorsList = new PatternListList(this);

            Style = new TextStyle();
            KeywordsList.Parent      = this;
            KeywordsList.IsKeyword   = true;
            OperatorsList.Parent     = this;
            OperatorsList.IsOperator = true;
            ScopePatterns            = new ScopeCollection(this);
        }
예제 #3
0
        public BlockType()
        {
            this.KeywordsList = new PatternListList(this);
            this.OperatorsList = new PatternListList(this);

            Style = new TextStyle();
            KeywordsList.Parent = this;
            KeywordsList.IsKeyword = true;
            OperatorsList.Parent = this;
            OperatorsList.IsOperator = true;
            ScopePatterns = new ScopeCollection(this);
        }