2 instantiations of CodeOptionsStatement
Microsoft.VisualStudio.LanguageServices.Implementation (2)
CodeModel\InternalElements\CodeOptionsStatement.cs (2)
25var element = new CodeOptionsStatement(state, fileCodeModel, name, ordinal); 37var element = new CodeOptionsStatement(state, fileCodeModel, nodeKind, name);
7 references to CodeOptionsStatement
Microsoft.VisualStudio.LanguageServices.Implementation (6)
CodeModel\AbstractCodeModelService.cs (1)
427return CodeOptionsStatement.Create(state, fileCodeModel, name, ordinal);
CodeModel\Collections\NamespaceCollection.cs (2)
75return CodeOptionsStatement.Create(this.State, this.FileCodeModel, name, ordinal); 181element = CodeOptionsStatement.Create(State, FileCodeModel, childName, ordinal);
CodeModel\Collections\NodeSnapshot.cs (1)
52return CodeOptionsStatement.Create(_state, this.FileCodeModel, name, ordinal);
CodeModel\InternalElements\CodeOptionsStatement.cs (2)
25var element = new CodeOptionsStatement(state, fileCodeModel, name, ordinal); 37var element = new CodeOptionsStatement(state, fileCodeModel, nodeKind, name);
Microsoft.VisualStudio.LanguageServices.VisualBasic (1)
CodeModel\VisualBasicCodeModelService.vb (1)
673Return CType(CodeOptionsStatement.CreateUnknown(state, fileCodeModel, node.Kind, GetName(node)), EnvDTE.CodeElement)