public Program() { _fileName = null; _isModified = false; Procedures = new ProgramProcedureList(this, new ObservableCollection <Procedure>()); _isOptimized = false; Libraries = LibraryList.Create(); Libraries.Add(Library.Standard); }
public Query(CodeSentence codeSentence) { if (codeSentence == null) { throw new ArgumentNullException("codeSentence"); } m_codeSentence = codeSentence; m_libraries = LibraryList.Create(); m_libraries.Add(Library.Standard); }