Ejemplo n.º 1
0
 public NTriplesLanguageService(
     PsiLanguageType psiLanguageType, IConstantValueService constantValueService, CommonIdentifierIntern commonIdentifierIntern)
     : base(psiLanguageType, constantValueService)
 {
     this.commonIdentifierIntern = commonIdentifierIntern;
     //this.formatter = formatter;
 }
 public AngularJsLanguageService(PsiLanguageType psiLanguageType,
                                 IConstantValueService constantValueService,
                                 IJavaScriptCodeFormatter codeFormatter)
     : base(psiLanguageType, constantValueService)
 {
     this.codeFormatter = codeFormatter;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T4LanguageService"/> class.
 /// </summary>
 /// <param name="t4Language">The T4 language.</param>
 /// <param name="directiveInfoManager">An instance of <see cref="DirectiveInfoManager"/>.</param>
 /// <param name="constantValueService">The constant value service.</param>
 /// <param name="t4Environment">An object describing the environment for T4 files.</param>
 public T4LanguageService([NotNull] T4Language t4Language, [NotNull] DirectiveInfoManager directiveInfoManager,
                          [NotNull] IConstantValueService constantValueService, [NotNull] T4Environment t4Environment)
     : base(t4Language, constantValueService)
 {
     _t4Environment        = t4Environment;
     _directiveInfoManager = directiveInfoManager;
 }
Ejemplo n.º 4
0
 public AngularJsLanguageService(PsiLanguageType psiLanguageType,
                                 IConstantValueService constantValueService,
                                 IJavaScriptCodeFormatter codeFormatter)
     : base(psiLanguageType, constantValueService)
 {
     this.codeFormatter = codeFormatter;
 }
Ejemplo n.º 5
0
 public PsiLanguageService(PsiLanguageType psiLanguageType,
                           IConstantValueService constantValueService, PsiCodeFormatter formatter, CommonIdentifierIntern commonIdentifierIntern)
     : base(psiLanguageType, constantValueService)
 {
     myFormatter = formatter;
     myCommonIdentifierIntern = commonIdentifierIntern;
 }
Ejemplo n.º 6
0
 public GherkinLanguageService([NotNull] GherkinLanguage language,
                               [NotNull] IConstantValueService constantValueService,
                               [NotNull] GherkinKeywordProvider keywordProvider,
                               [NotNull] SpecflowSettingsProvider settingsProvider) : base(language, constantValueService)
 {
     _keywordProvider  = keywordProvider;
     _settingsProvider = settingsProvider;
 }
Ejemplo n.º 7
0
 public DslLanguageService(
     PsiLanguageType lexLanguageType, IConstantValueService constantValueService, CommonIdentifierIntern commonIdentifierIntern)
     : base(lexLanguageType, constantValueService)
 {
     _commonIdentifierIntern = commonIdentifierIntern;
 }
Ejemplo n.º 8
0
 public T4LanguageService(
     [NotNull] T4Language t4Language,
     [NotNull] IConstantValueService constantValueService,
     [NotNull] ILogger logger
     ) : base(t4Language, constantValueService) => Logger = logger;
Ejemplo n.º 9
0
 public SpringLanguageService([NotNull] PsiLanguageType psiLanguageType,
                              [NotNull] IConstantValueService constantValueService) : base(psiLanguageType, constantValueService)
 {
 }
Ejemplo n.º 10
0
 public ShaderLabLanguageService(ShaderLabLanguage psiLanguageType, IConstantValueService constantValueService, CommonIdentifierIntern commonIdentifierIntern, ShaderLabCodeFormatter codeFormatter)
     : base(psiLanguageType, constantValueService)
 {
     myCommonIdentifierIntern = commonIdentifierIntern;
     myCodeFormatter          = codeFormatter;
 }
Ejemplo n.º 11
0
 public XXLanguageXXLanguageService(
   XXLanguageXXLanguage language, IConstantValueService constantValueService)
   : base(language, constantValueService) { }
Ejemplo n.º 12
0
 public ShaderLabLanguageService(ShaderLabLanguage psiLanguageType, IConstantValueService constantValueService, CommonIdentifierIntern commonIdentifierIntern)
     : base(psiLanguageType, constantValueService)
 {
     myCommonIdentifierIntern = commonIdentifierIntern;
 }
Ejemplo n.º 13
0
        public PsiLanguageService(PsiLanguageType psiLanguageType, IConstantValueService constantValueService, PsiCodeFormatter formatter)
            : base(psiLanguageType, constantValueService)

        {
            myFormatter = formatter;
        }
 public JsonNewLanguageService(PsiLanguageType psiLanguageType, IConstantValueService constantValueService, CommonIdentifierIntern intern)
     : base(psiLanguageType, constantValueService)
 {
     myIntern = intern;
 }
Ejemplo n.º 15
0
 public DslLanguageService(
     PsiLanguageType lexLanguageType, IConstantValueService constantValueService, CommonIdentifierIntern commonIdentifierIntern)
     : base(lexLanguageType, constantValueService)
 {
     _commonIdentifierIntern = commonIdentifierIntern;
 }
 public XXLanguageXXLanguageService(
     XXLanguageXXLanguage language, IConstantValueService constantValueService)
     : base(language, constantValueService)
 {
 }
Ejemplo n.º 17
0
 public UnityYamlLanguageService([NotNull] PsiLanguageType psiLanguageType, [NotNull] IConstantValueService constantValueService)
     : base(psiLanguageType, constantValueService)
 {
 }
    public PsiLanguageService(PsiLanguageType psiLanguageType, IConstantValueService constantValueService, PsiCodeFormatter formatter)
      : base(psiLanguageType, constantValueService)

    {
      myFormatter = formatter;
    }
Ejemplo n.º 19
0
 public GherkinLanguageService(GherkinLanguage psiLanguageType, IConstantValueService constantValueService)
     : base(psiLanguageType, constantValueService)
 {
 }