예제 #1
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);
        }
예제 #2
0
파일: BlockType.cs 프로젝트: bartKam/hardek
		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);
		}