Exemplo n.º 1
0
 private bool Complete_Suggestion()
 {
     return(Dialog_Helpers.Complete_Suggestion(
                this.assignment_Text,
                interpreter_pkg.call_dialog,
                this.current_suggestion,
                ref this.suggestion_result));
 }
Exemplo n.º 2
0
 private bool Complete_Suggestion_Var()
 {
     return(Dialog_Helpers.Complete_Suggestion(
                this.variableTextBox,
                interpreter_pkg.lhs_dialog,
                this.current_suggestion_var,
                ref this.suggestion_result_var));
 }
Exemplo n.º 3
0
 private bool Complete_Suggestion_Lhs()
 {
     return(Dialog_Helpers.Complete_Suggestion(
                this.lhsTextBox,
                interpreter_pkg.lhs_dialog,
                this.current_suggestion,
                ref this.suggestion_result));
 }
Exemplo n.º 4
0
 private bool Complete_Suggestion_Expr()
 {
     return(Dialog_Helpers.Complete_Suggestion(
                this.exprTextBox,
                interpreter_pkg.expr_dialog,
                this.current_suggestion_expr,
                ref this.suggestion_result_expr));
 }
Exemplo n.º 5
0
 private bool Complete_Suggestion()
 {
     return(Dialog_Helpers.Complete_Suggestion(
                this.Control_Text,
                interpreter_pkg.expr_dialog,
                this.current_suggestion,
                ref this.suggestion_result));
 }