Blame view

Modif/epsilon-master/apps/shared/store_context.cpp 347 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #include "store_context.h"
  #include <poincare/decimal.h>
  #include <assert.h>
  #include <string.h>
  
  using namespace Poincare;
  
  namespace Shared {
  
  void StoreContext::setExpressionForSymbolName(const Expression * expression, const Symbol * symbol, Context & context) {
    m_parentContext->setExpressionForSymbolName(expression, symbol, context);
  }
  
  }