public Program() { m_fileName = null; m_isModified = false; m_procedures = new ProgramProcedureList(this, new ObservableCollection <Procedure>()); m_isOptimized = false; m_libraries = LibraryList.Create(); m_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); }