3 overrides of DefaultValueFromAttributes
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Source\SourceClonedParameterSymbol.cs (1)
76internal override ConstantValue DefaultValueFromAttributes
Symbols\Source\SourceComplexParameterSymbol.cs (1)
102internal sealed override ConstantValue DefaultValueFromAttributes
Symbols\Source\SourceSimpleParameterSymbol.cs (1)
127internal override ConstantValue DefaultValueFromAttributes
5 references to DefaultValueFromAttributes
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Source\SourceClonedParameterSymbol.cs (2)
72return _suppressOptional ? _originalParam.DefaultValueFromAttributes : _originalParam.ExplicitDefaultConstantValue; 78get { return _originalParam.DefaultValueFromAttributes; }
Symbols\Source\SourceParameterSymbolBase.cs (1)
84DefaultValueFromAttributes == ConstantValue.NotAvailable)
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (2)
Semantics\LambdaTests.cs (2)
4861Assert.Equal(2, parameter.DefaultValueFromAttributes.Value); 4889Assert.Equal(new DateTime(638004778421967416L), parameter.DefaultValueFromAttributes.Value);