Chromium Code Reviews| Index: tests/language/src/InterfaceFactoryMultiTest.dart |
| =================================================================== |
| --- tests/language/src/InterfaceFactoryMultiTest.dart (revision 5311) |
| +++ tests/language/src/InterfaceFactoryMultiTest.dart (working copy) |
| @@ -14,7 +14,7 @@ |
| class AImpl implements A { |
| String _secret; |
| - AImpl(String one, String two) : _secret = one + two; |
| + AImpl(String one, String two) : _secret = one.concat(two); |
|
kasperl
2012/03/12 06:55:42
_secret = "${one}${two}"
Ivan Posva
2012/04/11 14:26:00
Done.
|
| String GetSecret() { return _secret; } |
| } |
| @@ -28,7 +28,7 @@ |
| class BImpl implements B { |
| String _secret; |
| - BImpl(String one, String two) : _secret = two + one; |
| + BImpl(String one, String two) : _secret = two.concat(one); |
|
kasperl
2012/03/12 06:55:42
_secret = "${two}${one}"
Ivan Posva
2012/04/11 14:26:00
Done.
|
| String GetSecret() { return _secret; } |
| } |