Vertaling van "CompiledCode" in Spaans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Once it finishes writing the file to the disk, it returns the input (the CompiledCode), which becomes the return value of the entire compiler process.
Después de escribir el fichero en disco, devuelve la entrada (el CompiledCode), el cual pasa a ser el valor de retorno de todo el proceso de compilación. Ficheros mencionados
In that case, the compiler stops in the Packager stage, and returns the CompiledCode from that stage as the return value of the compiler.
En ese caso, el compilador se detiene en la etapa de Empaquetación, y devuelve el CompiledCode de esa etapa como valor de retorno del compilador.
lib/compiler/: The implementation of the package method, which populates the CompiledCode with information from the Generator object.
Estos métodos son un reflejo directo de dichas instrucciones. lib/compiler/: La definición del objeto Generator.
It takes the original input file name, appends c to the end, and calls Rubinius::CompiledFile.dump with the CompiledCode from the previous stage and the file name to write to.
Toma el nombre del fichero original, le añade una c al final, y llama a Rubinius::CompiledFile.dump con el CompiledCode de la etapa anterior y el nuevo nombre de fichero donde escribir.
Once the Packager has created the CompiledCode, Rubinius will write the method to a file for future consumption.
Una vez el Packager ha creado el CompiledCode, Rubinius escribirá el método en un fichero para consumo futuro.
Because of the architecture of the Rubinius compiler, it is easy to add additional stages to the end of the process, and as long as each of those stages returns the inputted CompiledCode (or a different CompiledCode), everything will work as expected.
Dada la arquitectura del compilador de Rubinius, es muy sencillo añadir etapas adicionales al final del proceso. Siempre y cuando cada una de dichas etapas devuelva el mismo CompiledCode (o uno diferente), todo irá como se espera.
Once the Generator has finished packaging itself as a CompiledCode, it invokes the Writer stage, passing in the CompiledCode as its input.