• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wurstscript / WurstScript / 227

29 Nov 2023 11:46AM UTC coverage: 62.48% (-0.09%) from 62.574%
227

Pull #1083

circleci

Frotty
remove confusing mpq error, make some mpq loads readonly
Pull Request #1083: Show dialog for choosing game path

17295 of 27681 relevant lines covered (62.48%)

0.62 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

42.86
de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/jassinterpreter/providers/LuaEnsureTypeProvider.java
1
package de.peeeq.wurstio.jassinterpreter.providers;
2

3
import de.peeeq.wurstscript.intermediatelang.ILconstBool;
4
import de.peeeq.wurstscript.intermediatelang.ILconstInt;
5
import de.peeeq.wurstscript.intermediatelang.ILconstReal;
6
import de.peeeq.wurstscript.intermediatelang.ILconstString;
7
import de.peeeq.wurstscript.intermediatelang.interpreter.AbstractInterpreter;
8

9
public class LuaEnsureTypeProvider extends Provider {
10
    public LuaEnsureTypeProvider(AbstractInterpreter interpreter) {
11
        super(interpreter);
1✔
12
    }
1✔
13

14
    public ILconstInt intEnsure(ILconstInt x) {
15
        return x;
1✔
16
    }
17

18
    public ILconstString stringEnsure(ILconstString x) {
19
        return x;
×
20
    }
21

22
    public ILconstBool boolEnsure(ILconstBool x) {
23
        return x;
×
24
    }
25

26
    public ILconstReal realEnsure(ILconstReal x) {
27
        return x;
×
28
    }
29

30
    public ILconstString stringConcat(ILconstString x, ILconstString y) { return new ILconstString(x.getVal() + y.getVal()); }
×
31
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc