public MicrosoftScriptError(MSScriptControl.Error error, IZeusContext context)
		{
			if (context != null)
				this._fileName = context.ExecutingTemplate.FilePath + context.ExecutingTemplate.FileName;
			this._source = error.Source;
			this._message = error.Description;
			this._description = string.Empty;
			this._stackTrace = error.Text;
			this._number = error.Number.ToString();
			this._line = error.Line;
			this._column = error.Column;
		}
Exemplo n.º 2
0
Arquivo: iectl.cs Projeto: wrmsr/iectl
 public ScriptUtils(MSScriptControl.ScriptControlClass _script, IEController _ie)
 {
     script = _script;
     ie = _ie;
 }