Sha256: a2a1b71d43663d58caf7fd4593d5adb8824fa4f61cfcf6265041510078a1f3c7

Contents?: true

Size: 301 Bytes

Versions: 3

Compression:

Stored size: 301 Bytes

Contents

package p2.reflect {

	public class ReflectionVariable extends ReflectionMember {

		protected var _type:String;

		public function ReflectionVariable(description:XML) {
			super(description);
		}
		
		public function get type():String {
			return _type ||= description.@type;
		}
	}
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
asunit4-4.2.3.pre vendor/as3reflection/p2/reflect/ReflectionVariable.as
asunit4-4.2.2.pre vendor/as3reflection/p2/reflect/ReflectionVariable.as
asunit4-4.2.1.pre vendor/as3reflection/p2/reflect/ReflectionVariable.as