tessl install tessl/npm-coffeescript@2.7.0A programming language that compiles into JavaScript, offering more concise and readable syntax while maintaining full JavaScript compatibility.
Agent Success
Agent success rate when using this tile
77%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.01x
Baseline
Agent success rate without this tile
76%
{
"context": "This criteria evaluates how well the engineer uses the CoffeeScript package to compile and evaluate code with complex destructuring patterns. The evaluation focuses on proper usage of CoffeeScript.compile() and CoffeeScript.eval() functions to handle various destructuring scenarios.",
"type": "weighted_checklist",
"checklist": [
{
"name": "CoffeeScript.compile() usage",
"description": "Uses CoffeeScript.compile() function to compile CoffeeScript code to JavaScript in the compileDestructuring() function",
"max_score": 25
},
{
"name": "CoffeeScript.eval() usage",
"description": "Uses CoffeeScript.eval() or CoffeeScript.run() function to evaluate CoffeeScript code in the evalDestructuring() function",
"max_score": 25
},
{
"name": "Nested destructuring handling",
"description": "Successfully compiles nested array destructuring (e.g., [a, [b, c]]) and nested object destructuring (e.g., {a: {b: c}}) patterns using CoffeeScript API",
"max_score": 15
},
{
"name": "Object aliasing support",
"description": "Successfully compiles object property aliasing patterns (e.g., {old: new}) using CoffeeScript API",
"max_score": 10
},
{
"name": "Default values handling",
"description": "Successfully compiles destructuring with default values in both arrays and objects using CoffeeScript API",
"max_score": 10
},
{
"name": "Rest operator support",
"description": "Successfully compiles rest/splat operator patterns (e.g., [first, rest...]) using CoffeeScript API",
"max_score": 10
},
{
"name": "Module exports",
"description": "Properly exports both compileDestructuring and evalDestructuring functions using module.exports",
"max_score": 5
}
]
}