チェンジセット 1200
- コミット日時:
- 2008/08/30 12:37:52 (4 ヶ月前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/ASReflect/trunk/src/org/libspark/asreflect/builders/BasicFactoryHandler.as
r297 r1200 1 /*1 /* 2 2 * Copyright(c) 2006-2007 the Spark project. 3 3 * … … 53 53 public function handleChildCreated(context:ParseContext, object:Object):void 54 54 { 55 var type:BasicType; 56 var method:Method; 57 var property:Property; 58 55 59 if (object is Method) { 56 var type:BasicType = BasicType(context.peek());57 var method:Method = Method(object);60 type = BasicType(context.peek()); 61 method = Method(object); 58 62 59 63 if (method.declaringClass != type.nativeClass) { … … 64 68 } 65 69 else if (object is Property) { 66 var type:BasicType = BasicType(context.peek());67 var property:Property = Property(object);70 type = BasicType(context.peek()); 71 property = Property(object); 68 72 69 73 if (property.hasAccessor) { as3/ASReflect/trunk/src/org/libspark/asreflect/builders/BasicTypeHandler.as
r297 r1200 1 /*1 /* 2 2 * Copyright(c) 2006-2007 the Spark project. 3 3 * … … 75 75 public function handleChildCreated(context:ParseContext, object:Object):void 76 76 { 77 var type:BasicType; 78 var method:Method; 79 var property:Property; 80 77 81 if (object is Method) { 78 var type:BasicType = BasicType(context.peek());79 var method:Method = Method(object);82 type = BasicType(context.peek()); 83 method = Method(object); 80 84 81 85 if (method.declaringClass != type.nativeClass) { … … 86 90 } 87 91 else if (object is Property) { 88 var type:BasicType = BasicType(context.peek());89 var property:Property = Property(object);92 type = BasicType(context.peek()); 93 property = Property(object); 90 94 91 95 if (property.hasAccessor) {
