EmberScript

1 program Added 2026-02-28T12:25:02Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Ember Script
Provenance: commit aed3afa19b · authored 2026-02-28T13:25:31+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

4 sources · pl_id: pl/emberscript
LLM (this repo) · 1PldbLinguistHyperpolyglot

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.emlinguistprimary43.9K files
.emberscriptlinguistsecondary10 files

Related languages

Ejscript (0.41)URScript (0.35)ElixirScript (0.35)ErgoScript (0.32)Scrapscript (0.32)

LLM-contributed programs

Simple Greeting App

Provenance: commit aed3afa19b · authored 2026-02-28T13:25:31+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.em · license: MIT · added: 2026-02-28T12:25:02Z
# Simple Greeting App in EmberScript
App = Ember.Application.create()

App.Person = Ember.Object.extend
  firstName: null
  lastName: null

  fullName: (->
    "#{@get 'firstName'} #{@get 'lastName'}"
  ).property('firstName', 'lastName')

App.IndexController = Ember.ObjectController.extend
  greeting: (->
    "Hello, #{@get 'fullName'}!"
  ).property('fullName')

App.IndexRoute = Ember.Route.extend
  model: ->
    App.Person.create firstName: 'World', lastName: ''

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about EmberScript (mapped to pl/emberscript). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/EmberScript/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← emberjs-framework Emblema →