virtual-labs-archive / digital-logic-design-iiith

Other
3 stars 61 forks source link

Expected method shorthand. (object-shorthand) #94

Open BSravanthi opened 6 years ago

BSravanthi commented 6 years ago

ECMAScript 6 provides a concise form for defining object literal methods and properties. This syntax can make defining complex object literals much cleaner. In ECMAScript 6:

//Bad:
var foo = {
    x: function() {},
    y: function *() {},
    z: z
};

//Good:
var foo = {
    x() {},
    *y() {},
    z
};

Please refer to the following link to fix similar issues. https://app.codacy.com/app/BSravanthi/digital-logic-design-iiith/issues?&filters=W3siaWQiOiJMYW5ndWFnZSIsInZhbHVlcyI6W251bGxdfSx7ImlkIjoiQ2F0ZWdvcnkiLCJ2YWx1ZXMiOlsiQ29kZSBTdHlsZSJdfSx7ImlkIjoiTGV2ZWwiLCJ2YWx1ZXMiOltudWxsXX0seyJpZCI6IlBhdHRlcm4iLCJ2YWx1ZXMiOlsxNjE5XX0seyJ2YWx1ZXMiOltdfV0=

DevikaBoddu commented 6 years ago

Commit id: da1147e

Pallavi98 commented 6 years ago

valid fix @DevikaBoddu

AksharaMayreddy commented 6 years ago

valid fix @DevikaBoddu