コード例 #1
0
ファイル: CommentToken.cs プロジェクト: fugaku/scriptsharp
 internal CommentToken(CommentTokenType type, string comment, string sourcePath, BufferPosition position)
     : base(TokenType.Comment, sourcePath, position) {
     _commentType = type;
     _comment = comment;
 }
コード例 #2
0
 internal CommentToken(CommentTokenType type, string comment, string sourcePath, BufferPosition position)
     : base(TokenType.Comment, sourcePath, position)
 {
     _commentType = type;
     _comment     = comment;
 }