A programming language that compiles into JavaScript, offering more concise and readable syntax while maintaining full JavaScript compatibility.
77
Pending
Does it follow best practices?
Impact
77%
1.01xAverage score across 10 eval scenarios
Pending
The risk profile of this skill
{
"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
}
]
}evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10