コード例 #1
0
 public SourceInfo(SourceInfo o)
 {
     if (o == null)
     {
         source       = null;
         beginSrcLine = 0;
         endSrcLine   = 0;
     }
     else
     {
         source       = o.source;
         beginSrcLine = o.beginSrcLine;
         endSrcLine   = o.endSrcLine;
     }
 }
コード例 #2
0
ファイル: VarTerm.cs プロジェクト: nasa03/Jasonity
 public override void SetSrcInfo(SourceInfo s)
 {
     base.SetSrcInfo(s);
 }
コード例 #3
0
ファイル: DefaultTerm.cs プロジェクト: nasa03/Jasonity
 /*
  * Sets the source info of this term.
  * s - The source info
  */
 public virtual void SetSrcInfo(SourceInfo s)
 {
     srcInfo = s;
 }
コード例 #4
0
ファイル: PlanBodyImpl.cs プロジェクト: nasa03/Jasonity
 public void SetSrcInfo(SourceInfo s)
 {
     throw new NotImplementedException();
 }