30 lines
680 B
C#
30 lines
680 B
C#
|
|
|
||
|
|
using Godot;
|
||
|
|
|
||
|
|
using Rokojori;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System;
|
||
|
|
using System.Reflection;
|
||
|
|
using System.Text.RegularExpressions;
|
||
|
|
using System.Linq;
|
||
|
|
|
||
|
|
namespace Rokojori.DocGenerator
|
||
|
|
{
|
||
|
|
public class ClassBlock:LexerEvent
|
||
|
|
{
|
||
|
|
public static readonly string LexerType = "ClassBlock";
|
||
|
|
public int originalStartIndex = -1;
|
||
|
|
public int originalEndIndex = -1;
|
||
|
|
|
||
|
|
public ClassBlock( int s, int e, int originalStartIndex, int originalEndIndex ):base( LexerType, s, e )
|
||
|
|
{
|
||
|
|
this.originalEndIndex = originalEndIndex;
|
||
|
|
this.originalStartIndex = originalStartIndex;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void SetMatch( string match )
|
||
|
|
{
|
||
|
|
_match = match;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|