Esempio n. 1
0
 public ExampleGroup(string name = "", LetExpressionDictionary inheritedLetExpressions = null)
 {
     m_name = name;
     if (inheritedLetExpressions != null)
     {
         m_letExpressions = new LetExpressionDictionary(inheritedLetExpressions);
     }
 }
Esempio n. 2
0
 public ExampleContext(LetExpressionDictionary letExpressions)
 {
     m_letExpressions = letExpressions;
 }
Esempio n. 3
0
 public LetExpressionDictionary(LetExpressionDictionary template) : base(template)
 {
 }