@@ -5,39 +5,39 @@ namespace PropertyChangedAnalyzers
55
66 internal static class KnownSymbol
77 {
8- internal static readonly ObjectType Object = new ObjectType ( ) ;
9- internal static readonly StringType String = new StringType ( ) ;
8+ internal static readonly ObjectType Object = new ( ) ;
9+ internal static readonly StringType String = new ( ) ;
1010 internal static readonly QualifiedType Boolean = Create ( "System.Boolean" , "bool" ) ;
1111 internal static readonly QualifiedType Attribute = Create ( "System.Attribute" ) ;
1212 internal static readonly QualifiedType IEnumerator = Create ( "System.Collections.IEnumerator" ) ;
1313 internal static readonly QualifiedType Stream = Create ( "System.IO.Stream" ) ;
14- internal static readonly NullableType Nullable = new NullableType ( ) ;
15- internal static readonly NullableOfTType NullableOfT = new NullableOfTType ( ) ;
16- internal static readonly EqualityComparerOfTType EqualityComparerOfT = new EqualityComparerOfTType ( ) ;
14+ internal static readonly NullableType Nullable = new ( ) ;
15+ internal static readonly NullableOfTType NullableOfT = new ( ) ;
16+ internal static readonly EqualityComparerOfTType EqualityComparerOfT = new ( ) ;
1717 internal static readonly QualifiedType LinqExpressionOfT = Create ( "System.Linq.Expressions.Expression`1" ) ;
1818 internal static readonly QualifiedType ConcurrentDictionaryOfTKeyTValue = Create ( "System.Collections.Concurrent.ConcurrentDictionary`2" ) ;
1919
20- internal static readonly QualifiedType CallerMemberNameAttribute = new QualifiedType ( "System.Runtime.CompilerServices.CallerMemberNameAttribute" ) ;
21- internal static readonly INotifyPropertyChangedType INotifyPropertyChanged = new INotifyPropertyChangedType ( ) ;
22- internal static readonly QualifiedType PropertyChangedEventArgs = new QualifiedType ( "System.ComponentModel.PropertyChangedEventArgs" ) ;
23- internal static readonly QualifiedType BindableAttribute = new QualifiedType ( "System.ComponentModel.BindableAttribute" ) ;
24- internal static readonly PropertyChangedEventHandlerType PropertyChangedEventHandler = new PropertyChangedEventHandlerType ( ) ;
20+ internal static readonly QualifiedType CallerMemberNameAttribute = new ( "System.Runtime.CompilerServices.CallerMemberNameAttribute" ) ;
21+ internal static readonly INotifyPropertyChangedType INotifyPropertyChanged = new ( ) ;
22+ internal static readonly QualifiedType PropertyChangedEventArgs = new ( "System.ComponentModel.PropertyChangedEventArgs" ) ;
23+ internal static readonly QualifiedType BindableAttribute = new ( "System.ComponentModel.BindableAttribute" ) ;
24+ internal static readonly PropertyChangedEventHandlerType PropertyChangedEventHandler = new ( ) ;
2525
26- internal static readonly DependencyObjectType DependencyObject = new DependencyObjectType ( ) ;
26+ internal static readonly DependencyObjectType DependencyObject = new ( ) ;
2727 internal static readonly QualifiedType DataTemplateSelector = Create ( "System.Windows.Controls.DataTemplateSelector" ) ;
2828 internal static readonly QualifiedType MarkupExtension = Create ( "System.Windows.Markup.MarkupExtension" ) ;
2929 internal static readonly QualifiedType IValueConverter = Create ( "System.Windows.Data.IValueConverter" ) ;
3030 internal static readonly QualifiedType IMultiValueConverter = Create ( "System.Windows.Data.IMultiValueConverter" ) ;
3131
32- internal static readonly MvvmLightViewModelBase MvvmLightViewModelBase = new MvvmLightViewModelBase ( ) ;
33- internal static readonly MvvmLightObservableObject MvvmLightObservableObject = new MvvmLightObservableObject ( ) ;
34- internal static readonly CaliburnMicroPropertyChangedBase CaliburnMicroPropertyChangedBase = new CaliburnMicroPropertyChangedBase ( ) ;
35- internal static readonly StyletPropertyChangedBase StyletPropertyChangedBase = new StyletPropertyChangedBase ( ) ;
36- internal static readonly MvvmCrossMvxNotifyPropertyChanged MvvmCrossMvxNotifyPropertyChanged = new MvvmCrossMvxNotifyPropertyChanged ( ) ;
37- internal static readonly MvvmCrossCoreMvxNotifyPropertyChanged MvvmCrossCoreMvxNotifyPropertyChanged = new MvvmCrossCoreMvxNotifyPropertyChanged ( ) ;
38- internal static readonly MicrosoftPracticesPrismMvvmBindableBase MicrosoftPracticesPrismMvvmBindableBase = new MicrosoftPracticesPrismMvvmBindableBase ( ) ;
32+ internal static readonly MvvmLightViewModelBase MvvmLightViewModelBase = new ( ) ;
33+ internal static readonly MvvmLightObservableObject MvvmLightObservableObject = new ( ) ;
34+ internal static readonly CaliburnMicroPropertyChangedBase CaliburnMicroPropertyChangedBase = new ( ) ;
35+ internal static readonly StyletPropertyChangedBase StyletPropertyChangedBase = new ( ) ;
36+ internal static readonly MvvmCrossMvxNotifyPropertyChanged MvvmCrossMvxNotifyPropertyChanged = new ( ) ;
37+ internal static readonly MvvmCrossCoreMvxNotifyPropertyChanged MvvmCrossCoreMvxNotifyPropertyChanged = new ( ) ;
38+ internal static readonly MicrosoftPracticesPrismMvvmBindableBase MicrosoftPracticesPrismMvvmBindableBase = new ( ) ;
3939
40- internal static readonly QualifiedType JetbrainsNotifyPropertyChangedInvocatorAttribute = new QualifiedType ( "Jetbrains.Annotations.NotifyPropertyChangedInvocatorAttribute" ) ;
40+ internal static readonly QualifiedType JetbrainsNotifyPropertyChangedInvocatorAttribute = new ( "Jetbrains.Annotations.NotifyPropertyChangedInvocatorAttribute" ) ;
4141
4242 private static QualifiedType Create ( string qualifiedName , string ? alias = null )
4343 {
0 commit comments