API-CHANGES.txt 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799
  1. 0.19.1:
  2. * Deprecate amber/boot api nextId, prop globalJsVariables.
  3. * Remove amber/boot prop reservedWords (with the hope no one uses it directly).
  4. * Deprecate ProtoObject >> identityHash.
  5. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  6. + AmberBootstrapInitialization class >>
  7. + run
  8. + initializeClasses
  9. + organizeClasses
  10. + organizeMethods
  11. + Behavior >>
  12. + basicOrganization
  13. + ClassOrganizer >>
  14. + theClass
  15. + ClassOrganizer class >>
  16. + on:
  17. + Compiler class >>
  18. + eval:
  19. + JavaScriptException >>
  20. + shouldBeStubbed
  21. + wrap
  22. + Message class >>
  23. + selector:arguments:notUnderstoodBy:
  24. + MethodContext >>
  25. + stubHere
  26. + stubToAtMost:
  27. + NonBooleanReceiver class >>
  28. + signalOn:
  29. + Package >>
  30. + evalBlock
  31. + evalBlock:
  32. + Package class >>
  33. + named:javaScriptDescriptor:
  34. + SmalltalkImage >>
  35. + packageDictionary
  36. + packageAt:ifPresent:
  37. + TBehaviorProvider >>
  38. + methodOrganizationEnter:andLeave:
  39. + TMasterBehavior >>
  40. + definedMethods
  41. + enterOrganization
  42. + leaveOrganization
  43. + Trait >>
  44. + basicOrganization
  45. + basicOrganization:
  46. + UndefinedObject >>
  47. + ==
  48. - Package >>
  49. - basicName:
  50. - basicImports
  51. - ProtoObject >>
  52. - isSameInstanceAs:
  53. - ObjectTest >>
  54. - testIdentityHash
  55. 0.19.0:
  56. * Remove class Thenable, add trait TThenable.
  57. * Behavior / Trait hierarchy uses traits.
  58. + NativeFunction class >>
  59. + isNativeFunction:
  60. + IRInstructions >>
  61. + isSelf
  62. + isSuper
  63. + IRVariable >>
  64. + isSelf
  65. + isSuper
  66. + ScopeVar >>
  67. + isSelf
  68. + isSuper
  69. + PseudoVar >>
  70. + isSelf
  71. + isSuper
  72. +UndefinedObject >>
  73. + identityHash
  74. + value
  75. - IRSend >>
  76. - isSuperSend
  77. 0.18.3:
  78. * Move {add,remove}Element from Array.prototype to kernel API.
  79. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  80. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  81. * Add class Trait as subclass of BehaviorBody.
  82. * Add class TraitTransformation.
  83. * Deprecate #asJSON in favour of #asJavaScriptObject.
  84. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  85. + BehaviorBody >>
  86. + setTraitComposition:
  87. + traitCompositionDefinition
  88. + traitUsers
  89. + allSubclassesDo:
  90. + superclass
  91. + Trait >>
  92. + allInstanceVariableNames
  93. + allSubclassesDo:
  94. + asJavascript
  95. + asTraitComposition
  96. + category
  97. + classTag
  98. + definition
  99. + package
  100. + superclass
  101. + theMetaClass
  102. + theNonMetaClass
  103. + exportBehaviorDefinitionTo:using:
  104. + traitUsers
  105. + package:
  106. + Trait class >>
  107. + named:package:
  108. + named:uses:package:
  109. + TraitTransformation >>
  110. + -
  111. + @
  112. + addAliases:
  113. + addExclusions:
  114. + aliases
  115. + asJSON
  116. + asJavascript
  117. + asTraitComposition
  118. + asTraitTransformation
  119. + definition
  120. + exclusions
  121. + initialize
  122. + postCopy
  123. + trait
  124. + trait:
  125. + Collection >>
  126. + copyWithout:
  127. + SequenceableCollection >>
  128. + reverseDo:
  129. + Array >>
  130. + asTraitComposition
  131. + amber/boot api >>
  132. + addElement
  133. + removeElement
  134. + wrapJavaScript
  135. + CharacterArray >>
  136. + asSymbolPrintOn:
  137. + symbolPrintString
  138. + String >>
  139. + isSelector
  140. + StringStream >>
  141. + print:
  142. + printSymbol:
  143. + Package >>
  144. + traitCompositions
  145. + Class >>
  146. + subClass:
  147. + subClass:uses:
  148. + subClass:uses:instanceVariables:
  149. + subClass:uses:instanceVariables:category:
  150. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  151. + subClass:uses:instanceVariables:package:
  152. + UndefinedObject >>
  153. + subClass:
  154. + subClass:uses:
  155. + subClass:uses:instanceVariables:
  156. + subClass:uses:instanceVariables:category:
  157. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  158. + subClass:uses:instanceVariables:package:
  159. + Metaclass >>
  160. + uses:instanceVariableNames:
  161. - Association >>
  162. - importsString
  163. - String >>
  164. - importsString
  165. - AbstractExporter
  166. - classNameFor:
  167. - Exporter >>
  168. - jsClassNameFor:
  169. 0.18.2:
  170. * Add Platform-DOM package with DOM-related stuff.
  171. * Platform-DOM not loaded by default. Packages that will use it will import it.
  172. + PlatformDom class >>
  173. + isFeasible
  174. + isDomNode:
  175. + newCustomEvent:detail:
  176. + toArray:
  177. + CharacterArray >>
  178. + asDomNode
  179. + Collection >>
  180. + asDomNode
  181. + JSObjectProxy >>
  182. + asDomNode
  183. + String >>
  184. + htmlTextContent
  185. 0.18.1:
  186. + ASTNode >>
  187. + withTail:
  188. - SendNode >>
  189. - valueWithReceiver:
  190. 0.18.0:
  191. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  192. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  193. * Some internal API changes in Compiler-* (including the move to DAG-node).
  194. - Object >>
  195. - throw:
  196. 0.17.0:
  197. * Remove classes InterfacingObject, PlatformInterface.
  198. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  199. + amber/boot api >>
  200. + nilAsReceiver
  201. - NativeFunction class >>
  202. - constructor:
  203. - constructor:value:
  204. - constructor:value:value:
  205. - constructor:value:value:value:
  206. 0.16.1:
  207. * Deprecate $boot.dnu (use $boot.nilAsClass).
  208. + amber/boot api >>
  209. + nilAsClass
  210. 0.16.0:
  211. * Deprecate ClassBuilder >> setupClass:
  212. * $core.initialize now returns a Promise
  213. * $core.addClass now returns the class
  214. + amber/boot api >>
  215. + send2
  216. + traverseClassTree
  217. + Promise class >>
  218. + new
  219. - amber/boot api >>
  220. - wrapClassName
  221. - send
  222. - allSubclasses
  223. - AbstractCodeGenerator >>
  224. - classNameFor:
  225. 0.15.1:
  226. * Thenable class added
  227. * Promise class added, wraps JS Promise, subclass of Thenable
  228. + Thenable >>
  229. + catch:
  230. + on:do:
  231. + on:do:catch:
  232. + then:
  233. + then:catch:
  234. + then:on:do:
  235. + then:on:do:catch:
  236. + JSObjectProxy >>
  237. + catch:
  238. + on:do:
  239. + on:do:catch:
  240. + then:
  241. + then:catch:
  242. + then:on:do:
  243. + then:on:do:catch:
  244. + amber/boot api >>
  245. + seamless
  246. + Promise class >>
  247. + new:
  248. + forBlock:
  249. + value:
  250. + signal:
  251. + all:
  252. + any:
  253. 0.14.18:
  254. * Some internal API changes in Compiler-*.
  255. 0.14.14:
  256. * InterfacingObject >> ajax: deprecated
  257. * PlatformInterface class deprecated
  258. * Class BrowserInterface removed
  259. * Class Terminal, BrowserTerminal added
  260. * Class Platform, BrowserPlatform added
  261. + Environment >>
  262. + renamePackage:to:
  263. + Platform class >>
  264. + globals
  265. + newXhr
  266. + Terminal class >>
  267. + alert:
  268. + confirm:
  269. + prompt:
  270. + prompt:default:
  271. SmalltalkImage >>
  272. + existsJsGlobal:
  273. - PlatformInterface class >>
  274. - initialize
  275. - setWorker:
  276. 0.14.12:
  277. + JSObjectProxy >>
  278. + putOn:
  279. + ProtoStream >>
  280. + nextPutJSObject:
  281. 0.14.11:
  282. * Basic streaming protocol extracted from Stream to ProtoStream
  283. + Object >>
  284. + in:
  285. + JSObjectProxy >>
  286. + in:
  287. 0.14.10:
  288. + JSObjectProxy class >>
  289. + addObjectVariablesTo:ofProxy:
  290. + compareJSObjectOfProxy:withProxy:
  291. + forwardMessage:withArguments:ofProxy:
  292. + jsObject:ofProxy:
  293. + lookupProperty:ofProxy:
  294. - JSObjectProxy >>
  295. - jsObject:
  296. - lookupProperty:
  297. - compareJSObjectWith:
  298. - addObjectVariablesTo:
  299. - forwardMessage:withArguments:
  300. 0.14.4:
  301. + AmdExporter >>
  302. + importsForOutput:
  303. + AbstractCodeGenerator >>
  304. + currentPackage
  305. + currentPackage:
  306. + Compiler >>
  307. + currentPackage
  308. + currentPackage:
  309. + compile:forClass:protocol:
  310. + compileNode:forClass:package:
  311. + SemanticAnalyzer >>
  312. + thePackage
  313. + thePackage:
  314. + isVariableUndefined:inPackage:
  315. - Compiler >>
  316. - compile:
  317. - compile:forClass:
  318. - compileExpression:
  319. - SemanticAnalyzer >>
  320. - isVariableGloabllyUndefined:
  321. - Behavior >>
  322. - compile:
  323. 0.14.3:
  324. * #heliosClass is now #classTag
  325. + Compiler >>
  326. + eval:forPackage:
  327. + Behavior >>
  328. + packageOfProtocol:
  329. + Exporter >>
  330. + exportPackageContextOf:on:
  331. + exportPackageImportsOf:on:
  332. + Package >>
  333. + basicImports
  334. + imports
  335. + imports:
  336. + importsDefinition
  337. + importsFromJson:
  338. + importsAsJson
  339. + sortedImportsAsArray
  340. + validateImports:
  341. + Package class >>
  342. + named:imports:transport:
  343. + Association >>
  344. + importsString
  345. + String >>
  346. + importsString
  347. + ProtoObject >>
  348. + ifNil:
  349. + ifNil:ifNotNil:
  350. + ifNotNil:
  351. + ifNotNil:ifNil:
  352. + isNil
  353. + notNil
  354. - Object >>
  355. - ifNil:
  356. - ifNil:ifNotNil:
  357. - ifNotNil:
  358. - ifNotNil:ifNil:
  359. - isNil
  360. - notNil
  361. 0.14.1:
  362. * NativeFunction class >> constructor:[value:...] deprecated
  363. + NativeFunction class >>
  364. + constructorNamed:
  365. + constructorNamed:value:
  366. + constructorNamed:value:value:
  367. + constructorNamed:value:value:value:
  368. + constructorOf:
  369. + constructorOf:value:
  370. + constructorOf:value:value:
  371. + constructorOf:value:value:value:
  372. + functionNamed:
  373. + functionNamed:value:
  374. + functionNamed:value:value:
  375. + functionNamed:value:value:value:
  376. + functionNamed:valueWithArgs:
  377. + functionOf:
  378. + functionOf:value:
  379. + functionOf:value:value:
  380. + functionOf:value:value:value:
  381. + functionOf:valueWithArgs:
  382. + methodOf:this:
  383. + methodOf:this:value:
  384. + methodOf:this:value:value:
  385. + methodOf:this:value:value:value:
  386. + methodOf:this:valueWithArgs:
  387. + SmalltalkImage >>
  388. + optOut:
  389. + cancelOptOut:
  390. 0.14.0:
  391. + Object >>
  392. + asJQuery
  393. + asJQueryInContext:
  394. + BlockClosure >>
  395. + asJQuery
  396. + asJQueryInContext:
  397. - AnnouncementSubscription >>
  398. - block
  399. - block:
  400. - Collection >>
  401. - contains:
  402. - String >>
  403. - asSelector
  404. - asJavaScriptSelector
  405. - SmalltalkImage >>
  406. - at:
  407. - at:ifAbsent:
  408. - at:put:
  409. - current
  410. - vm
  411. - createPackage:properties:
  412. - MethodContext >>
  413. - temps
  414. - Object >>
  415. - try:catch:
  416. 0.13.2:
  417. + SourceArea class >>
  418. + codeMirror
  419. 0.13.1:
  420. * String >> asSelector is now String >> asJavaScriptMethodName
  421. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  422. * smalltalk.selector is now smalltalk.st2js
  423. * smalltalk.convertSelector is now smalltalk.js2st
  424. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  425. * Smalltalk vm is now Smalltalk core
  426. * boot.js's .vm is now .api
  427. * amber load sets' .vm is now .api
  428. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  429. + smalltalk.
  430. + accessJavaScript
  431. + Object >>
  432. + postMessageTo:
  433. + postMessageTo:origin:
  434. + Class >>
  435. + heliosClass
  436. + SmalltalkImage >>
  437. + core
  438. + amber/boot exports
  439. + api
  440. + amber/{devel,deploy,lang} exports
  441. + api
  442. - ProtoObject class >>
  443. - heliosClass
  444. - Object class >>
  445. - heliosClass
  446. 0.12.6:
  447. + String >>
  448. + value:
  449. + ProtocolAnnouncement >>
  450. + package
  451. + Behavior >>
  452. + isTestClass
  453. + Package >>
  454. + isTestPackage
  455. + amber/{devel,deploy,lang} exports
  456. + nil
  457. + amber/helpers exports
  458. + nil
  459. 0.12.4:
  460. * Package Canvas renamed to Web
  461. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  462. + Announcer >>
  463. + on:do:for:
  464. + Node >>
  465. + navigationNodeAt:ifAbsent:
  466. + BlockClosure >>
  467. + tryCatch:
  468. + Environment >>
  469. + evaluate:for:
  470. + AmberCli >>
  471. + version:
  472. + Object >>
  473. + deprecatedAPI:
  474. - Environment >>
  475. - eval:on:
  476. - evaluateString:on:
  477. 0.12.3:
  478. * Package Import-Export renamed to Kernel-ImportExport
  479. * A dozen of methods moved from Object to ProtoObject
  480. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  481. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  482. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  483. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  484. * Smalltalk current deprecated in favour of Smalltalk
  485. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  486. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  487. + CompiledMethod >>
  488. + defaultProtocol
  489. + Behavior >>
  490. + compile:protocol:
  491. + removeProtocolIfEmpty:
  492. + Package >>
  493. + load
  494. + loadFromNamespace:
  495. + Package class >>
  496. + load:
  497. + load:fromNamespace:
  498. + PackageTransport >> load
  499. + PackageHandler >> load:
  500. + AmdPackageHandler >> load:
  501. + Set >> removeAll
  502. + AssociativeCollection class
  503. + BucketStore class
  504. + SmalltalkImage >>
  505. + globals
  506. + vm
  507. + settings
  508. + Setting class
  509. + String >>
  510. + asSetting
  511. + asSettingIfAbsent:
  512. + settingValue
  513. + settingValueIfAbsent:
  514. + settingValue:
  515. + Smalltalk global variable
  516. - CompiledMethod >>
  517. - category: (use #protocol:)
  518. - defaultCategory
  519. - Behavior >> compile:category:
  520. - HTMLCanvas class >>
  521. - browserVersion
  522. - isMSIE
  523. - isMozilla
  524. - isOpera
  525. - isWebkit
  526. 0.12.2:
  527. * Collection >> contains: is deprecated in favor of anySatisfy:
  528. + Announcer >> on:doOnce:
  529. + String >>
  530. + uriEncoded
  531. + uriDecoded
  532. + uriComponentEncoded
  533. + uriComponentDecoded
  534. + Collection >>
  535. + removeAll
  536. + ifEmpty:ifNotEmpty:
  537. + ifNotEmpty:ifEmpty:
  538. + anyOne
  539. + noneSatisfy:
  540. + anySatisfy:
  541. + allSatisfy:
  542. 0.12.0:
  543. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  544. * Existing classes moved to new KernelInfrastructure package
  545. * ImporterExporter
  546. * are now StreamExporters
  547. * aware of AMD namespaces
  548. * support transport types and commit channels
  549. + Node >>
  550. + nextChild
  551. + method
  552. + postCopy
  553. + isCascadeNode
  554. + isLastChild
  555. + BlockNode >>
  556. + nextNode:
  557. + nextChild
  558. + SendNode >>
  559. + isCascadeSendNode
  560. + shouldBeAliased
  561. + CompiledMethod >> sendTo:arguments:
  562. + Array >>
  563. + addFirst:
  564. + removeLast
  565. + Number >>
  566. + ceiling
  567. + floor
  568. + asNumber
  569. + //
  570. + cos
  571. + sin
  572. + tan
  573. + arcCos
  574. + arcSin
  575. + arcTan
  576. + log
  577. + log:
  578. + raisedTo:
  579. + sign
  580. + **
  581. + ln
  582. + e
  583. + String class >> esc
  584. + String >>
  585. + asMutator
  586. + capitalized
  587. + isCapitalized
  588. + JSProxy >> printString
  589. + Behavior >>
  590. + ownProtocols
  591. + ownMethods
  592. + JSStream >> nextPutSendIndexFor:
  593. + InterfacingObject class
  594. + Interpreter class
  595. + DocumentFragmentTag class
  596. + AbstractExporter class
  597. + PlatformInterface class
  598. - Node >> extent
  599. - JSStream >> nextPutStatement:with:
  600. - Smalltalk.installSuperclass()
  601. - ClassReferenceNode class (now handled via VariableNode)
  602. 0.11.0:
  603. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  604. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  605. * Object>>printString
  606. * replace >>printString with >>printOn:
  607. * replace >>storeString with >>printString
  608. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  609. * Package>>fetch: is now Package>>load:
  610. * Package>>fetch:prefix: is now Package>>load:prefix:
  611. * Queue>>front replaced by Queue>>next
  612. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  613. * Queue>>back: replaced by Queue>>nextPut:
  614. * smalltalk.addMethod() does not use explicit JS selector
  615. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  616. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  617. * String>>asJavaScriptSelector moved to Kernel-Objects package
  618. + Object>>asString
  619. + Object>>putOn:
  620. + String>>isVowel
  621. + Collection>>putOn:
  622. + CharacterArray>>putOn:
  623. + Stream>><<
  624. + Stream>>write
  625. + SequenceableCollection>>newStream
  626. + SequenceableCollection>>readStream
  627. + SequenceableCollection>>stream
  628. + SequenceableCollection>>streamClass
  629. + SequenceableCollection>>writeStream
  630. + Collection>>isImmutable
  631. + Stream>>nextPutString:
  632. + StringStream>>nextPutString:
  633. + JSStream>>nextPutClassRefFunction:
  634. + String>>crlfSanitized
  635. + inlined Block now also responds to >>value:
  636. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  637. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  638. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  639. + Parser: Symbols for binarie selectores
  640. + Package>>commit
  641. + AIContext>>initializeLocals
  642. + ASTInterpreter>>withBlockContext:
  643. + smalltalk.allSelectors()
  644. + Object>>isCompiledMethod
  645. + Object>>isPackage
  646. + Object>>isBehavior
  647. + ClassMoved Announcemen class
  648. + Behavior>>includesBehavior:
  649. + Environment>>classes
  650. + Environment>>allSelectors
  651. + Environment>>removeProtocol:
  652. + Environment>>renameProtocol:to:in:
  653. + CompiledMethod>>protocol:
  654. + Smalltalk>>globalJsVariables
  655. + Smalltalk>>addGlobalJsVariable:
  656. + Smalltalk>>deleteGlobalJsVariable:
  657. - Object>>storeOn:
  658. - Object>>log:block:
  659. - Object>>printNl
  660. - Compiler-IR.st >>javascriptSelector
  661. - Compiler-IR.st >>nextPutVar:
  662. - Kernel-Collections.st >>asSuperSelector
  663. - Collection>>readStream
  664. - Collection>>stream
  665. - Collection>>streamClass
  666. - Collection>>writeStream
  667. - Symbol class (replaced with String)
  668. - IRInlinedNonLocalReturn class
  669. - IRInlinedSend>>nonLocalReturnInliner
  670. - IRNonLocalReturnInliner class
  671. - Package>>dependencies
  672. - Package>>dependencies:
  673. - Package>>properties
  674. - Package>>jsProperties
  675. - Package>>jsProperties:
  676. - Package>>propertiesAsJSON
  677. - Package>>propertyAt:
  678. - Package>>propertyAt:ifAbsent:
  679. - Package>>propertyAt:put:
  680. - Browser>>ajaxPutAt:data: