Posts by Lucius Matos • 43 points
4 posts
-
0
votes1
answer51
viewsQ: Intellisense in the return of Javascript function in Vscode
How to make Vscode show the Intellisense in callback using method Map.prototype.get? Code: function tanque(altura){ this.altura = altura; } let objMap = new Map(); objMap.set('7101', new…
-
1
votes0
answers60
viewsQ: Module not located - "module xxx not found" - Lua lang
Archive: Player.lua, my module local Player = {} local function funcPlayer() local player = {} local self = {name="", points = 0} local setPoints = function(newPoints) self.points = newPoints end…
-
1
votes0
answers27
viewsQ: Finishing a java object variable with null - Will it be removed from memory?
public class TesteMemoria { public static void main(String... x){ ASayboltFurolViscosity objeto; for (Double i = 30.0; i < 40.0; i++){ objeto = new AlgoritmoASTMD2161_v1999_SSF(i,…
-
2
votes1
answer85
viewsA: How to implement the Factory project standard in VBA?
I’m using the example of the book "Use the Head - Project Patterns", which is from a pizzeria. I have used two approaches to have Fachory Method in VBA: 1) Using a collection to avoid using many…