Added Application module comments. Modified Console module + comments. Changed the package name of the UnitTestApp for Android.

This commit is contained in:
atanasovg
2014-05-08 14:47:12 +03:00
parent 1531c206e6
commit 298bf0977a
14 changed files with 121 additions and 93 deletions

View File

@ -154,7 +154,7 @@ export class FileSystemEntity {
*/
get lastModified(): Date {
var value = this[lastModifiedProperty];
if (this[lastModifiedProperty] === undefined) {
if (!this[lastModifiedProperty]) {
value = this[lastModifiedProperty] = getFileAccess().getLastModified(this.path);
}