123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- goog.setTestOnly('goog.testing.fs.File');
- goog.provide('goog.testing.fs.File');
- goog.require('goog.testing.fs.Blob');
- goog.testing.fs.File = function(name, opt_lastModified, opt_data, opt_type) {
- goog.testing.fs.File.base(this, 'constructor', opt_data, opt_type);
-
- this.name = name;
-
- this.lastModifiedDate = opt_lastModified || null;
- };
- goog.inherits(goog.testing.fs.File, goog.testing.fs.Blob);
|