예제 #1
0
 public JsFunction()
 {
     Arguments = new List<string>();
     Statement = new EmptyStatement();
     Scope = new JsScope();
     DeclaringScopes = new List<JsDictionaryObject>();
 }
예제 #2
0
 /// <summary>
 /// Init new function object with a specified prototype
 /// </summary>
 /// <param name="prototype">prototype for this object</param>
 public JsFunction(JsObject prototype)
     : base(prototype)
 {
     Arguments = new List<string>();
     Statement = new EmptyStatement();
     DefineOwnProperty(PROTOTYPE, JsNull.Instance, PropertyAttributes.DontEnum);
 }
예제 #3
0
		public void Visit(EmptyStatement expression)
		{

		}
예제 #4
0
 public void Visit(EmptyStatement statement)
 {
     return;
 }
예제 #5
0
파일: IronJint.cs 프로젝트: welias/IronWASP
 void Analyze(EmptyStatement Stmt)
 {
     SetCurrentLineAndCharNos(Stmt);
 }