xfileinline1.js 482 B

1234567891011121314
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. function foo()
  6. {
  7. this.a = 5;
  8. this.b = 2;
  9. }
  10. foo.prototype.add = function(x,y)
  11. {
  12. return x+y;
  13. }