Example #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));
 }
Example #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));
 }
Example #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));
 }
Example #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));
 }
Example #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));
 }