import $ from 'jquery'; import { Types } from '../types'; import * as Models from '../ivprog_elements'; import { LocalizedStrings } from '../../services/localizedStringsService'; import * as GlobalsManagement from '../globals'; import * as VariablesManagement from '../variables'; import * as VariableValueMenu from './variable_value_menu'; export function createFloatingCommand () { return $('
funcao()
'); } export function renderCommand (command, function_obj) { var el = $('
'); $(el).data('command', command); VariableValueMenu.renderMenu(command, command.function_called, $(el).find('.var_value_menu_div'), function_obj); return el; }