private void buttonCreateEnvironment_Click(object sender, EventArgs e)
 {
     this.Environment             = new SmalltalkEnvironment();
     this.LastResult              = null;
     this.textResultInstall.Text  = null;
     this.textResultEvaluate.Text = null;
 }
Exemple #2
0
 private void InstallTester_Load(object sender, EventArgs e)
 {
     if (Properties.Settings.Default.LastInstallerSource != null)
     {
         this.txtSource.Text = Properties.Settings.Default.LastInstallerSource;
     }
     this.Environment = new SmalltalkEnvironment();
 }
Exemple #3
0
 public Workspace(IWorkspaceClient client)
 {
     if (client == null)
         throw new ArgumentNullException();
     this.Environment = new SmalltalkEnvironment();
     this.LastResult = null;
     this.Client = client;
 }
Exemple #4
0
 public Workspace(IWorkspaceClient client)
 {
     if (client == null)
     {
         throw new ArgumentNullException();
     }
     this.Environment = new SmalltalkEnvironment();
     this.LastResult  = null;
     this.Client      = client;
 }
Exemple #5
0
        private void buttonProcessInterchangeFiles_Click(object sender, EventArgs e)
        {
            string path = @"D:\Users\TT\Documents\Visual Studio 2010\Projects\IronSmalltalk\TestPlayground\Test.ist";

            path = @"D:\Users\TT\Desktop\IronSmalltalk.ist";
            SmalltalkEnvironment env      = new SmalltalkEnvironment();
            FileInService        compiler = env.CompilerService;

            compiler.Install(new PathFileInInformation(path, System.Text.Encoding.UTF8, new ConsoleErrorSink()));
        }
Exemple #6
0
 private SmalltalkLanguageContext(ScriptDomainManager domainManager)
     : base(domainManager)
 {
     this.SmalltalkEnvironment = new SmalltalkEnvironment();
 }
 public WorkspaceTester()
 {
     InitializeComponent();
     this.Environment = new SmalltalkEnvironment();
     this.LastResult  = null;
 }
Exemple #8
0
        private void buttonDebug_Click(object sender, EventArgs e)
        {
            SmalltalkEnvironment env = this.Environment;

            System.Diagnostics.Debugger.Break();
        }
Exemple #9
0
 private void buttonCreateEnvironment_Click(object sender, EventArgs e)
 {
     this.Environment = new SmalltalkEnvironment();
     this.listErrors.Items.Clear();
 }