Files
yallie 9fa3874800 Added the contents of the archive.
Moved the original file to the archive subfolder.
2017-11-20 16:11:42 +03:00

72 lines
2.2 KiB
C#

// ==++==
//
//
// Copyright (c) 2002 Microsoft Corporation. All rights reserved.
//
// The use and distribution terms for this software are contained in the file
// named license.txt, which can be found in the root of this distribution.
// By using this software in any fashion, you are agreeing to be bound by the
// terms of this license.
//
// You must not remove this notice, or any other, from this software.
//
//
// ==--==
namespace Microsoft.JScript
{
using System;
using System.Reflection;
internal sealed class JSParameterInfo : ParameterInfo{
private ParameterInfo parameter;
private Type parameterType;
private Object[] attributes = null;
internal JSParameterInfo(ParameterInfo parameter){
this.parameter = parameter;
}
public override Object DefaultValue{
get{
return this.parameter.DefaultValue;
}
}
public sealed override Object[] GetCustomAttributes(bool inherit){
Object[] attrs = this.attributes;
if (attrs != null) return attrs;
return this.attributes = this.parameter.GetCustomAttributes(true);
}
public sealed override Object[] GetCustomAttributes(Type type, bool inherit){
Debug.PreCondition(type == Typeob.ParamArrayAttribute);
Object[] attrs = this.attributes;
if (attrs != null) return attrs;
return this.attributes = this.parameter.GetCustomAttributes(type, true);
}
public sealed override bool IsDefined(Type type, bool inherit){
Debug.PreCondition(type == Typeob.ParamArrayAttribute);
Object[] attrs = this.attributes;
if (attrs == null)
this.attributes = attrs = this.parameter.GetCustomAttributes(type, true);
return attrs.Length > 0;
}
public override String Name{
get{
return this.parameter.Name;
}
}
public override Type ParameterType{
get{
Type result = this.parameterType;
if (result != null) return result;
return this.parameterType = this.parameter.ParameterType;
}
}
}
}