Example #1
0
 /// <summary>
 /// Emit the code to mark the file name at the current position
 /// in the generated code.
 /// </summary>
 /// <param name="cg">A code generator object</param>
 public override void Generate(CodeGenerator cg)
 {
     if (cg == null) {
         throw new ArgumentNullException("cg");
     }
     cg.MarkFile(Filename);
 }